commit 3adbedaa9bced8995d590a75ec4e2735f4d55607 Author: siah Date: Mon Jun 3 22:03:11 2024 +0200 zaliczenie cmmitów diff --git a/.gdb_history b/.gdb_history new file mode 100644 index 0000000..ba0a636 --- /dev/null +++ b/.gdb_history @@ -0,0 +1,236 @@ +target extended-remote localhost:3333 +file cpp/prog +load +si +exit +target extended-remote localhost:3333 +file cpp/prog +lost +load +si +c +load +si +load +laod +load +si +b main +c +exit +target extended-remote localhost:3333 +target extended-remote localhost:3333 +file cpp/prog +load +si +si +si +si +b main +c +:q! +exit +target extended-remote localhost:3333 +load cpp/prog +si +load +load +load +file cpp/prog +load +si + bmain +b main +c +load +si +sic +b main +c +del b +del +laod +si +load +si +set radix 16 +set args 0x1ff80 0x80 0x30 +dashboard -layout registers stack memory variables +si +dashboard memory watch 0x1ff80 0x80 +source gdb/z.py +dashboard +b main +c +si +load +si +c +source gdb/z.py +si +b func +c +load +si +c +load +si +c +si +source gdb/z.py +si +laod +load +si +c +dash +dash +si +file cpp/prog +load +si +si +c +del +b func +si +c +si +load +si +c +load +si +c main +load +si +c +load +del +b main +si +c +si +load cpp/prog +load +file cpp/prog +load +si +dashboard +source gdb/z.py +dashboard +del +b main +c +b func +c +load +si +file cpp/prog +laod +load +si +c +c +load +si +c +del +b func +c +exit +file cpp/prog +load +load +target extended-remote localhost:3333 +load +si +c +load +b main +c +b func +c +load +si +c +si +file cpp/prog +load +si +c +c +file cpp/prog +load +si +c +b swap_ptr(signed char*, signed char*) +c +load +b func(char*) +c +c +load +b func(char*) +del +b func(char*) +load +file cpp/prog +load +si +del +b main +c +b swap_ptr(signed char*, signed char*) +c +target extended-remote localhost:3333 +file cpp/prog +load +si +del +b main +c +b swap_ptr(signed char*, signed char*) +c +dashboard -layout registers stack memory variables +dashboard memory watch 0x1ff80 0x80 +:asm +si +p/x amessage +p/x &amessage +p/x & pmessage +p/x &pmessage +p/x pmessage +p/x &pmessage +laod +load +si +c +c +p/x pmessage +p/x &pmessage +load +si +c +c +p/x &pmessage +load +load +si +c +c +p/x pmessage +p/x &pmessage +load +si +exit +target extended-remote localhost:3333 +file cpp/prog +load +si +load +si +si +load +si +exit diff --git a/1 b/1 new file mode 100644 index 0000000..21f27fd --- /dev/null +++ b/1 @@ -0,0 +1,51 @@ +#include + +char * ptr1 = "jan"; +char * ptr2 = "kowalski"; + +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; +} + +int main() { + + char * p1 = alloc(strlen(ptr1)); + strcpy (p1, ptr1); + asm("nop"); + + char * p2 = alloc(strlen(ptr2)); + strcpy (p2, ptr2); + asm("nop"); + return 1; +} + diff --git a/conf.json b/conf.json new file mode 100644 index 0000000..05b8f00 --- /dev/null +++ b/conf.json @@ -0,0 +1,16 @@ +{ + "user": "siah", + "email": "siah@mpabi.pl", + "remotes": [ + { + "name": "r", + "protocol": "http", + "domain": "qstack.pl", + "port": "3000", + "token_name": "token", + "token": "be65ebb7f7f87593f0f1620df9ba86a02b777935", + "group": "1i-2023", + "project": "strlen-c" + } + ] +} \ No newline at end of file diff --git a/cpp/._rvmain.cpp.swm b/cpp/._rvmain.cpp.swm new file mode 100644 index 0000000..ee08e76 Binary files /dev/null and b/cpp/._rvmain.cpp.swm differ diff --git a/cpp/._rvmain.cpp.swn b/cpp/._rvmain.cpp.swn new file mode 100644 index 0000000..d0b40fb Binary files /dev/null and b/cpp/._rvmain.cpp.swn differ diff --git a/cpp/._rvmain.cpp.swo b/cpp/._rvmain.cpp.swo new file mode 100644 index 0000000..afb7b4f Binary files /dev/null and b/cpp/._rvmain.cpp.swo differ diff --git a/cpp/._rvmain.cpp.swp b/cpp/._rvmain.cpp.swp new file mode 100644 index 0000000..e061011 Binary files /dev/null and b/cpp/._rvmain.cpp.swp differ diff --git a/cpp/Make.rules b/cpp/Make.rules new file mode 100644 index 0000000..2bd12e9 --- /dev/null +++ b/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/cpp/Make.rules-kopia b/cpp/Make.rules-kopia new file mode 100644 index 0000000..2bd12e9 --- /dev/null +++ b/cpp/Make.rules-kopia @@ -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/cpp/Makefile b/cpp/Makefile new file mode 100644 index 0000000..1456d22 --- /dev/null +++ b/cpp/Makefile @@ -0,0 +1,27 @@ +TOP=./ +include $(TOP)/Make.rules + +LDLIBS= +#CFLAGS+=-O0 -g +# CFLAGS+=-Og -ggdb3 +CFLAGS+=-O0 -ggdb3 + +LDFLAGS+=-Wl,--no-relax +LDFLAGS+=-Wl,-Ttext=0x80000000,-Tdata=0x80010000 +# LDFLAGS+=-T murax_128k_ram.ld + +PROGS=prog prog.bin prog.lst + +all:: $(PROGS) + +prog: _crt0.o _rvmain.o myfunc.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/cpp/Murax.scala b/cpp/Murax.scala new file mode 100644 index 0000000..2260833 --- /dev/null +++ b/cpp/Murax.scala @@ -0,0 +1,543 @@ +package vexriscv.demo + +import spinal.core._ +import spinal.lib._ +import spinal.lib.bus.amba3.apb._ +import spinal.lib.bus.misc.SizeMapping +import spinal.lib.bus.simple.PipelinedMemoryBus +import spinal.lib.com.jtag.Jtag +import spinal.lib.com.spi.ddr.SpiXdrMaster +import spinal.lib.com.uart._ +import spinal.lib.io.{InOutWrapper, TriStateArray} +import spinal.lib.misc.{InterruptCtrl, Prescaler, Timer} +import spinal.lib.soc.pinsec.{PinsecTimerCtrl, PinsecTimerCtrlExternal} +import vexriscv.plugin._ +import vexriscv.{VexRiscv, VexRiscvConfig, plugin} +import spinal.lib.com.spi.ddr._ +import spinal.lib.bus.simple._ +import scala.collection.mutable.ArrayBuffer +import scala.collection.Seq + +/** + * Created by PIC32F_USER on 28/07/2017. + * + * Murax is a very light SoC which could work without any external component. + * - ICE40-hx8k + icestorm => 53 Mhz, 2142 LC + * - 0.37 DMIPS/Mhz + * - 8 kB of on-chip ram + * - JTAG debugger (eclipse/GDB/openocd ready) + * - Interrupt support + * - APB bus for peripherals + * - 32 GPIO pin + * - one 16 bits prescaler, two 16 bits timers + * - one UART with tx/rx fifo + */ + + +case class MuraxConfig(coreFrequency : HertzNumber, + onChipRamSize : BigInt, + onChipRamHexFile : String, + pipelineDBus : Boolean, + pipelineMainBus : Boolean, + pipelineApbBridge : Boolean, + gpioWidth : Int, + uartCtrlConfig : UartCtrlMemoryMappedConfig, + xipConfig : SpiXdrMasterCtrl.MemoryMappingParameters, + hardwareBreakpointCount : Int, + cpuPlugins : ArrayBuffer[Plugin[VexRiscv]]){ + require(pipelineApbBridge || pipelineMainBus, "At least pipelineMainBus or pipelineApbBridge should be enable to avoid wipe transactions") + val genXip = xipConfig != null + +} + + + +object MuraxConfig{ + def default : MuraxConfig = default(false, false) + def default(withXip : Boolean = false, bigEndian : Boolean = false) = MuraxConfig( + coreFrequency = 12 MHz, + onChipRamSize = 128 kB, + onChipRamHexFile = null, + pipelineDBus = true, + pipelineMainBus = false, + pipelineApbBridge = true, + gpioWidth = 32, + xipConfig = ifGen(withXip) (SpiXdrMasterCtrl.MemoryMappingParameters( + SpiXdrMasterCtrl.Parameters(8, 12, SpiXdrParameter(2, 2, 1)).addFullDuplex(0,1,false), + cmdFifoDepth = 32, + rspFifoDepth = 32, + xip = SpiXdrMasterCtrl.XipBusParameters(addressWidth = 24, lengthWidth = 2) + )), + hardwareBreakpointCount = if(withXip) 3 else 0, + cpuPlugins = ArrayBuffer( //DebugPlugin added by the toplevel + new IBusSimplePlugin( + resetVector = if(withXip) 0xF001E000l else 0x00000000l, + cmdForkOnSecondStage = true, + cmdForkPersistence = withXip, //Required by the Xip controller + prediction = NONE, + catchAccessFault = false, + compressedGen = false, + bigEndian = bigEndian + ), + new DBusSimplePlugin( + catchAddressMisaligned = false, + catchAccessFault = false, + earlyInjection = false, + bigEndian = bigEndian + ), + new CsrPlugin(CsrPluginConfig.smallest(mtvecInit = if(withXip) 0xE0040020l else 0x00000020l)), + new DecoderSimplePlugin( + catchIllegalInstruction = false + ), + new RegFilePlugin( + regFileReadyKind = plugin.SYNC, + zeroBoot = false + ), + new IntAluPlugin, + new SrcPlugin( + separatedAddSub = false, + executeInsertion = false + ), + new LightShifterPlugin, + new HazardSimplePlugin( + bypassExecute = false, + bypassMemory = false, + bypassWriteBack = false, + bypassWriteBackBuffer = false, + pessimisticUseSrc = false, + pessimisticWriteRegFile = false, + pessimisticAddressMatch = false + ), + new BranchPlugin( + earlyBranch = false, + catchAddressMisaligned = false + ), + new YamlPlugin("cpu0.yaml") + ), + uartCtrlConfig = UartCtrlMemoryMappedConfig( + uartCtrlConfig = UartCtrlGenerics( + dataWidthMax = 8, + clockDividerWidth = 20, + preSamplingSize = 1, + samplingSize = 3, + postSamplingSize = 1 + ), + initConfig = UartCtrlInitConfig( + baudrate = 115200, + dataLength = 7, //7 => 8 bits + parity = UartParityType.NONE, + stop = UartStopType.ONE + ), + busCanWriteClockDividerConfig = false, + busCanWriteFrameConfig = false, + txFifoDepth = 16, + rxFifoDepth = 16 + ) + + ) + + def fast = { + val config = default + + //Replace HazardSimplePlugin to get datapath bypass + config.cpuPlugins(config.cpuPlugins.indexWhere(_.isInstanceOf[HazardSimplePlugin])) = new HazardSimplePlugin( + bypassExecute = true, + bypassMemory = true, + bypassWriteBack = true, + bypassWriteBackBuffer = true + ) +// config.cpuPlugins(config.cpuPlugins.indexWhere(_.isInstanceOf[LightShifterPlugin])) = new FullBarrelShifterPlugin() + + config + } +} + + +case class Murax(config : MuraxConfig) extends Component{ + import config._ + + val io = new Bundle { + //Clocks / reset + val asyncReset = in Bool() + val mainClk = in Bool() + + //Main components IO + val jtag = slave(Jtag()) + + //Peripherals IO + val gpioA = master(TriStateArray(gpioWidth bits)) + val uart = master(Uart()) + + val xip = ifGen(genXip)(master(SpiXdrMaster(xipConfig.ctrl.spi))) + } + + + val resetCtrlClockDomain = ClockDomain( + clock = io.mainClk, + config = ClockDomainConfig( + resetKind = BOOT + ) + ) + + val resetCtrl = new ClockingArea(resetCtrlClockDomain) { + val mainClkResetUnbuffered = False + + //Implement an counter to keep the reset axiResetOrder high 64 cycles + // Also this counter will automatically do a reset when the system boot. + val systemClkResetCounter = Reg(UInt(6 bits)) init(0) + when(systemClkResetCounter =/= U(systemClkResetCounter.range -> true)){ + systemClkResetCounter := systemClkResetCounter + 1 + mainClkResetUnbuffered := True + } + when(BufferCC(io.asyncReset)){ + systemClkResetCounter := 0 + } + + //Create all reset used later in the design + val mainClkReset = RegNext(mainClkResetUnbuffered) + val systemReset = RegNext(mainClkResetUnbuffered) + } + + + val systemClockDomain = ClockDomain( + clock = io.mainClk, + reset = resetCtrl.systemReset, + frequency = FixedFrequency(coreFrequency) + ) + + val debugClockDomain = ClockDomain( + clock = io.mainClk, + reset = resetCtrl.mainClkReset, + frequency = FixedFrequency(coreFrequency) + ) + + val system = new ClockingArea(systemClockDomain) { + val pipelinedMemoryBusConfig = PipelinedMemoryBusConfig( + addressWidth = 32, + dataWidth = 32 + ) + + val bigEndianDBus = config.cpuPlugins.exists(_ match{ case plugin : DBusSimplePlugin => plugin.bigEndian case _ => false}) + + //Arbiter of the cpu dBus/iBus to drive the mainBus + //Priority to dBus, !! cmd transactions can change on the fly !! + val mainBusArbiter = new MuraxMasterArbiter(pipelinedMemoryBusConfig, bigEndianDBus) + + //Instanciate the CPU + val cpu = new VexRiscv( + config = VexRiscvConfig( + plugins = cpuPlugins += new DebugPlugin(debugClockDomain, hardwareBreakpointCount) + ) + ) + + //Checkout plugins used to instanciate the CPU to connect them to the SoC + val timerInterrupt = False + val externalInterrupt = False + for(plugin <- cpu.plugins) plugin match{ + case plugin : IBusSimplePlugin => + mainBusArbiter.io.iBus.cmd <> plugin.iBus.cmd + mainBusArbiter.io.iBus.rsp <> plugin.iBus.rsp + case plugin : DBusSimplePlugin => { + if(!pipelineDBus) + mainBusArbiter.io.dBus <> plugin.dBus + else { + mainBusArbiter.io.dBus.cmd << plugin.dBus.cmd.halfPipe() + mainBusArbiter.io.dBus.rsp <> plugin.dBus.rsp + } + } + case plugin : CsrPlugin => { + plugin.externalInterrupt := externalInterrupt + plugin.timerInterrupt := timerInterrupt + } + case plugin : DebugPlugin => plugin.debugClockDomain{ + resetCtrl.systemReset setWhen(RegNext(plugin.io.resetOut)) + io.jtag <> plugin.io.bus.fromJtag() + } + case _ => + } + + + + //****** MainBus slaves ******** + val mainBusMapping = ArrayBuffer[(PipelinedMemoryBus,SizeMapping)]() + val ram = new MuraxPipelinedMemoryBusRam( + onChipRamSize = onChipRamSize, + onChipRamHexFile = onChipRamHexFile, + pipelinedMemoryBusConfig = pipelinedMemoryBusConfig, + bigEndian = bigEndianDBus + ) + mainBusMapping += ram.io.bus -> (0x00000000l, onChipRamSize) + + val apbBridge = new PipelinedMemoryBusToApbBridge( + apb3Config = Apb3Config( + addressWidth = 20, + dataWidth = 32 + ), + pipelineBridge = pipelineApbBridge, + pipelinedMemoryBusConfig = pipelinedMemoryBusConfig + ) + mainBusMapping += apbBridge.io.pipelinedMemoryBus -> (0xF0000000l, 1 MB) + + + + //******** APB peripherals ********* + val apbMapping = ArrayBuffer[(Apb3, SizeMapping)]() + val gpioACtrl = Apb3Gpio(gpioWidth = gpioWidth, withReadSync = true) + io.gpioA <> gpioACtrl.io.gpio + apbMapping += gpioACtrl.io.apb -> (0x00000, 4 kB) + + val uartCtrl = Apb3UartCtrl(uartCtrlConfig) + uartCtrl.io.uart <> io.uart + externalInterrupt setWhen(uartCtrl.io.interrupt) + apbMapping += uartCtrl.io.apb -> (0x10000, 4 kB) + + val timer = new MuraxApb3Timer() + timerInterrupt setWhen(timer.io.interrupt) + apbMapping += timer.io.apb -> (0x20000, 4 kB) + + val xip = ifGen(genXip)(new Area{ + val ctrl = Apb3SpiXdrMasterCtrl(xipConfig) + ctrl.io.spi <> io.xip + externalInterrupt setWhen(ctrl.io.interrupt) + apbMapping += ctrl.io.apb -> (0x1F000, 4 kB) + + val accessBus = new PipelinedMemoryBus(PipelinedMemoryBusConfig(24,32)) + mainBusMapping += accessBus -> (0xE0000000l, 16 MB) + + ctrl.io.xip.fromPipelinedMemoryBus() << accessBus + val bootloader = Apb3Rom("src/main/c/murax/xipBootloader/crt.bin") + apbMapping += bootloader.io.apb -> (0x1E000, 4 kB) + }) + + + + //******** Memory mappings ********* + val apbDecoder = Apb3Decoder( + master = apbBridge.io.apb, + slaves = apbMapping.toSeq + ) + + val mainBusDecoder = new Area { + val logic = new MuraxPipelinedMemoryBusDecoder( + master = mainBusArbiter.io.masterBus, + specification = mainBusMapping.toSeq, + pipelineMaster = pipelineMainBus + ) + } + } +} + + + +object Murax{ + def main(args: Array[String]) { + SpinalVerilog(Murax(MuraxConfig.default)) + } +} + +object MuraxCfu{ + def main(args: Array[String]) { + SpinalVerilog{ + val config = MuraxConfig.default + config.cpuPlugins += new CfuPlugin( + stageCount = 1, + allowZeroLatency = true, + encodings = List( + CfuPluginEncoding ( + instruction = M"-------------------------0001011", + functionId = List(14 downto 12), + input2Kind = CfuPlugin.Input2Kind.RS + ) + ), + busParameter = CfuBusParameter( + CFU_VERSION = 0, + CFU_INTERFACE_ID_W = 0, + CFU_FUNCTION_ID_W = 3, + CFU_REORDER_ID_W = 0, + CFU_REQ_RESP_ID_W = 0, + CFU_INPUTS = 2, + CFU_INPUT_DATA_W = 32, + CFU_OUTPUTS = 1, + CFU_OUTPUT_DATA_W = 32, + CFU_FLOW_REQ_READY_ALWAYS = false, + CFU_FLOW_RESP_READY_ALWAYS = false, + CFU_WITH_STATUS = true, + CFU_RAW_INSN_W = 32, + CFU_CFU_ID_W = 4, + CFU_STATE_INDEX_NUM = 5 + ) + ) + + val toplevel = Murax(config) + + toplevel.rework { + for (plugin <- toplevel.system.cpu.plugins) plugin match { + case plugin: CfuPlugin => plugin.bus.toIo().setName("miaou") + case _ => + } + } + + toplevel + } + } +} + + +object Murax_iCE40_hx8k_breakout_board_xip{ + + case class SB_GB() extends BlackBox{ + val USER_SIGNAL_TO_GLOBAL_BUFFER = in Bool() + val GLOBAL_BUFFER_OUTPUT = out Bool() + } + + case class SB_IO_SCLK() extends BlackBox{ + addGeneric("PIN_TYPE", B"010000") + val PACKAGE_PIN = out Bool() + val OUTPUT_CLK = in Bool() + val CLOCK_ENABLE = in Bool() + val D_OUT_0 = in Bool() + val D_OUT_1 = in Bool() + setDefinitionName("SB_IO") + } + + case class SB_IO_DATA() extends BlackBox{ + addGeneric("PIN_TYPE", B"110000") + val PACKAGE_PIN = inout(Analog(Bool)) + val CLOCK_ENABLE = in Bool() + val INPUT_CLK = in Bool() + val OUTPUT_CLK = in Bool() + val OUTPUT_ENABLE = in Bool() + val D_OUT_0 = in Bool() + val D_OUT_1 = in Bool() + val D_IN_0 = out Bool() + val D_IN_1 = out Bool() + setDefinitionName("SB_IO") + } + + case class Murax_iCE40_hx8k_breakout_board_xip() extends Component{ + val io = new Bundle { + val mainClk = in Bool() + val jtag_tck = in Bool() + val jtag_tdi = in Bool() + val jtag_tdo = out Bool() + val jtag_tms = in Bool() + val uart_txd = out Bool() + val uart_rxd = in Bool() + + val mosi = inout(Analog(Bool)) + val miso = inout(Analog(Bool)) + val sclk = out Bool() + val spis = out Bool() + + val led = out Bits(8 bits) + } + val murax = Murax(MuraxConfig.default(withXip = true).copy(onChipRamSize = 8 kB)) + murax.io.asyncReset := False + + val mainClkBuffer = SB_GB() + mainClkBuffer.USER_SIGNAL_TO_GLOBAL_BUFFER <> io.mainClk + mainClkBuffer.GLOBAL_BUFFER_OUTPUT <> murax.io.mainClk + + val jtagClkBuffer = SB_GB() + jtagClkBuffer.USER_SIGNAL_TO_GLOBAL_BUFFER <> io.jtag_tck + jtagClkBuffer.GLOBAL_BUFFER_OUTPUT <> murax.io.jtag.tck + + io.led <> murax.io.gpioA.write(7 downto 0) + + murax.io.jtag.tdi <> io.jtag_tdi + murax.io.jtag.tdo <> io.jtag_tdo + murax.io.jtag.tms <> io.jtag_tms + murax.io.gpioA.read <> 0 + murax.io.uart.txd <> io.uart_txd + murax.io.uart.rxd <> io.uart_rxd + + + + val xip = new ClockingArea(murax.systemClockDomain) { + RegNext(murax.io.xip.ss.asBool) <> io.spis + + val sclkIo = SB_IO_SCLK() + sclkIo.PACKAGE_PIN <> io.sclk + sclkIo.CLOCK_ENABLE := True + + sclkIo.OUTPUT_CLK := ClockDomain.current.readClockWire + sclkIo.D_OUT_0 <> murax.io.xip.sclk.write(0) + sclkIo.D_OUT_1 <> RegNext(murax.io.xip.sclk.write(1)) + + val datas = for ((data, pin) <- (murax.io.xip.data, List(io.mosi, io.miso)).zipped) yield new Area { + val dataIo = SB_IO_DATA() + dataIo.PACKAGE_PIN := pin + dataIo.CLOCK_ENABLE := True + + dataIo.OUTPUT_CLK := ClockDomain.current.readClockWire + dataIo.OUTPUT_ENABLE <> data.writeEnable + dataIo.D_OUT_0 <> data.write(0) + dataIo.D_OUT_1 <> RegNext(data.write(1)) + + dataIo.INPUT_CLK := ClockDomain.current.readClockWire + data.read(0) := dataIo.D_IN_0 + data.read(1) := RegNext(dataIo.D_IN_1) + } + } + + } + + def main(args: Array[String]) { + SpinalVerilog(Murax_iCE40_hx8k_breakout_board_xip()) + } +} + +object MuraxDhrystoneReady{ + def main(args: Array[String]) { + SpinalVerilog(Murax(MuraxConfig.fast.copy(onChipRamSize = 256 kB))) + } +} + +object MuraxDhrystoneReadyMulDivStatic{ + def main(args: Array[String]) { + SpinalVerilog({ + val config = MuraxConfig.fast.copy(onChipRamSize = 256 kB) + config.cpuPlugins += new MulPlugin + config.cpuPlugins += new DivPlugin + config.cpuPlugins.remove(config.cpuPlugins.indexWhere(_.isInstanceOf[BranchPlugin])) + config.cpuPlugins +=new BranchPlugin( + earlyBranch = false, + catchAddressMisaligned = false + ) + config.cpuPlugins += new IBusSimplePlugin( + resetVector = 0x00000000l, + cmdForkOnSecondStage = true, + cmdForkPersistence = false, + prediction = STATIC, + catchAccessFault = false, + compressedGen = false + ) + config.cpuPlugins.remove(config.cpuPlugins.indexWhere(_.isInstanceOf[LightShifterPlugin])) + config.cpuPlugins += new FullBarrelShifterPlugin + Murax(config) + }) + } +} + +//Will blink led and echo UART RX to UART TX (in the verilator sim, type some text and press enter to send UART frame to the Murax RX pin) +object MuraxWithRamInit{ + def main(args: Array[String]) { + SpinalVerilog(Murax(MuraxConfig.default.copy(onChipRamSize = 4 kB, onChipRamHexFile = "src/main/ressource/hex/muraxDemo.hex"))) + } +} + +object Murax_arty{ + def main(args: Array[String]) { + val hex = "src/main/c/murax/hello_world/build/hello_world.hex" + SpinalVerilog(Murax(MuraxConfig.default(false).copy(coreFrequency = 100 MHz,onChipRamSize = 32 kB, onChipRamHexFile = hex))) + } +} + + +object MuraxAsicBlackBox extends App{ + println("Warning this soc do not has any rom to boot on.") + val config = SpinalConfig() + config.addStandardMemBlackboxing(blackboxAll) + config.generateVerilog(Murax(MuraxConfig.default())) +} + diff --git a/cpp/_crt0.S b/cpp/_crt0.S new file mode 100644 index 0000000..50a0e46 --- /dev/null +++ b/cpp/_crt0.S @@ -0,0 +1,42 @@ + .text + .global _start + .type _start, @function + +_start: + # Initialize global pointer + .option push + .option norelax + la gp, __global_pointer$ + .option pop + + li sp, 0x800ffff0 + + # Clear the bss segment + la a0, __bss_start + la a1, __BSS_END__ + +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/cpp/_crt0.S-k0 b/cpp/_crt0.S-k0 new file mode 100644 index 0000000..dbe07d9 --- /dev/null +++ b/cpp/_crt0.S-k0 @@ -0,0 +1,42 @@ + .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__ + +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 \ No newline at end of file diff --git a/cpp/_crt0.S-k1 b/cpp/_crt0.S-k1 new file mode 100644 index 0000000..09af34b --- /dev/null +++ b/cpp/_crt0.S-k1 @@ -0,0 +1,39 @@ + .text + .global _start + .type _start, @function + +_start: + # Initialize global pointer + .option push + .option norelax + la gp, __global_pointer$ + .option pop + + # Initialize stack pointer from linker script symbol + la sp, __stack_top + + # Clear the BSS segment + la a0, __bss_start + la a1, __bss_end + +clear_bss: + bgeu a0, a1, finish_bss + sb x0, 0(a0) + addi a0, a0, 1 + j clear_bss +finish_bss: + + call main + + 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/cpp/_crt0.o b/cpp/_crt0.o new file mode 100644 index 0000000..95ac75c Binary files /dev/null and b/cpp/_crt0.o differ diff --git a/cpp/_rvmain.cpp b/cpp/_rvmain.cpp new file mode 100644 index 0000000..2c92a54 --- /dev/null +++ b/cpp/_rvmain.cpp @@ -0,0 +1,64 @@ +#include + +char * ptr1 = "janek"; +char * ptr2 = "kowalskii"; + +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; +} + +int main() { + + char * p1 = alloc(strlen(ptr1)); + strcpy (p1, ptr1); + asm("nop"); + + char * p2 = alloc(strlen(ptr2)); + strcpy (p2, ptr2); + asm("nop"); + + struct point { + int16_t x; + int16_t y; + }; + + struct point * ptrS = (struct point *) alloc(sizeof(point)); + ptrS->x=0x10; + ptrS->y=0x20; + asm("nop"); + + (*ptrS).y= strlen (p1)+ strlen(p2); + + return 1; +} + diff --git a/cpp/_rvmain.o b/cpp/_rvmain.o new file mode 100644 index 0000000..cbca608 Binary files /dev/null and b/cpp/_rvmain.o differ diff --git a/cpp/murax_128k_ram-sp.ld b/cpp/murax_128k_ram-sp.ld new file mode 100644 index 0000000..b3ac278 --- /dev/null +++ b/cpp/murax_128k_ram-sp.ld @@ -0,0 +1,43 @@ +MEMORY +{ + RAM (wx) : ORIGIN = 0x0, LENGTH = 128K +} + +SECTIONS +{ + .text : + { + *(.text*) + *(.rodata*) + } > RAM + + .data : + { + *(.data*) + } > RAM + + .bss : + { + *(.bss*) + *(COMMON) + } > RAM + + /* Add stack at the end of RAM */ + . = ALIGN(4); + _end = .; + PROVIDE(end = .); + + /* Define stack size and location */ + _stack_size = 0x4000; /* Example stack size: 16KB */ + _stack_end = ORIGIN(RAM) + LENGTH(RAM); /* End of RAM */ + _stack_start = _stack_end - _stack_size; /* Calculate start of the stack */ + .stack (NOLOAD) : + { + . = ALIGN(4); + . = . + _stack_size; + . = ALIGN(4); + _sp = .; + } > RAM + + PROVIDE(__stack = _sp); +} diff --git a/cpp/murax_128k_ram.ld b/cpp/murax_128k_ram.ld new file mode 100644 index 0000000..244668e --- /dev/null +++ b/cpp/murax_128k_ram.ld @@ -0,0 +1,67 @@ +/* Linker script for a system with 128KB RAM starting at 0x10000 */ +MEMORY +{ + RAM (wx) : ORIGIN = 0x0000, LENGTH = 128K +} + +SECTIONS +{ + /* Place code and readonly data at the beginning of RAM */ + .text : + { + *(.text*) + *(.rodata*) + } > RAM + + /* Place initialized data right after the .text section */ + .data : + { + . = ALIGN(4); + *(.data*) + } > RAM + + /* Uninitialized data (BSS) follows initialized data */ + .bss : + { + . = ALIGN(4); + __bss_start = .; + *(.bss*) + *(COMMON) + . = ALIGN(4); + __bss_end = .; + } > RAM + + /* Define heap start right after bss */ + . = ALIGN(4); + __heap_start = .; + PROVIDE(heap_start = __heap_start); + + /* Leave space for the heap by not explicitly defining its end */ + /* The heap grows towards the stack */ + + /* Reserve space for the stack at the end of RAM */ + /* Let's say we want a 16KB stack */ + . = ALIGN(4); + __stack_size = 16K; /* Size of the stack */ + __stack_top = ORIGIN(RAM) + LENGTH(RAM); /* Top of the stack */ + __stack_start = __stack_top - __stack_size; /* Start of the stack */ + .stack (NOLOAD) : + { + . = __stack_start; + . += __stack_size; /* Allocate space for the stack */ + . = ALIGN(4); + } > RAM + + PROVIDE(__stack = __stack_top); + PROVIDE(stack_top = __stack_top); + PROVIDE(stack_start = __stack_start); + + /* Heap end is dynamically located at the start of the stack */ + __heap_end = __stack_start; + PROVIDE(heap_end = __heap_end); + + /* End of RAM usage */ + . = ALIGN(4); + _end = .; + PROVIDE(end = _end); +} diff --git a/cpp/murax_128k_ram.ld-kopia b/cpp/murax_128k_ram.ld-kopia new file mode 100644 index 0000000..6488ff3 --- /dev/null +++ b/cpp/murax_128k_ram.ld-kopia @@ -0,0 +1,13 @@ +MEMORY +{ + RAM (wx) : ORIGIN = 0x10000, LENGTH = 128K +} + +SECTIONS +{ + .text : { *(.text*) } > RAM + .rodata : { *(.rodata*) } > RAM + .data : { *(.data*) } > RAM + .bss : { *(.bss*) } > RAM + _end = .; /* Definiuje koniec sekcji danych, może być używane do określenia rozmiaru sterty */ +} diff --git a/cpp/myfunc.cpp b/cpp/myfunc.cpp new file mode 100644 index 0000000..b621842 --- /dev/null +++ b/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/cpp/myfunc.h b/cpp/myfunc.h new file mode 100644 index 0000000..99a5984 --- /dev/null +++ b/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/cpp/myfunc.o b/cpp/myfunc.o new file mode 100644 index 0000000..8fc4f5a Binary files /dev/null and b/cpp/myfunc.o differ diff --git a/cpp/prog b/cpp/prog new file mode 100755 index 0000000..eddb4af Binary files /dev/null and b/cpp/prog differ diff --git a/cpp/prog.bin b/cpp/prog.bin new file mode 100755 index 0000000..5134a69 Binary files /dev/null and b/cpp/prog.bin differ diff --git a/cpp/prog.lst b/cpp/prog.lst new file mode 100644 index 0000000..223e08a --- /dev/null +++ b/cpp/prog.lst @@ -0,0 +1,7615 @@ + +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__+0xed8b4> +80000010: 00010517 auipc x10,0x10 +80000014: 01c50513 addi x10,x10,28 # 8001002c <_ZL8allocbuf> +80000018: 00012597 auipc x11,0x12 +8000001c: 72458593 addi x11,x11,1828 # 8001273c <__BSS_END__> + +80000020 : +80000020: 00b57863 bgeu x10,x11,80000030 +80000024: 00050023 sb x0,0(x10) +80000028: 00150513 addi x10,x10,1 +8000002c: fe000ae3 beq x0,x0,80000020 + +80000030 : +80000030: 00000013 addi x0,x0,0 +80000034: 00000097 auipc x1,0x0 +80000038: 168080e7 jalr x1,360(x1) # 8000019c
+8000003c: 00000013 addi x0,x0,0 +80000040: 00100073 ebreak + +80000044 <_Z6strlenPc>: +80000044: fd010113 addi x2,x2,-48 +80000048: 02812623 sw x8,44(x2) +8000004c: 03010413 addi x8,x2,48 +80000050: fca42e23 sw x10,-36(x8) +80000054: fdc42783 lw x15,-36(x8) +80000058: fef42623 sw x15,-20(x8) +8000005c: 0100006f jal x0,8000006c <_Z6strlenPc+0x28> +80000060: fec42783 lw x15,-20(x8) +80000064: 00178793 addi x15,x15,1 +80000068: fef42623 sw x15,-20(x8) +8000006c: fec42783 lw x15,-20(x8) +80000070: 0007c783 lbu x15,0(x15) +80000074: fe0796e3 bne x15,x0,80000060 <_Z6strlenPc+0x1c> +80000078: fec42703 lw x14,-20(x8) +8000007c: fdc42783 lw x15,-36(x8) +80000080: 40f707b3 sub x15,x14,x15 +80000084: 00078513 addi x10,x15,0 +80000088: 02c12403 lw x8,44(x2) +8000008c: 03010113 addi x2,x2,48 +80000090: 00008067 jalr x0,0(x1) + +80000094 <_Z6strcpyPcS_>: +80000094: fe010113 addi x2,x2,-32 +80000098: 00812e23 sw x8,28(x2) +8000009c: 02010413 addi x8,x2,32 +800000a0: fea42623 sw x10,-20(x8) +800000a4: feb42423 sw x11,-24(x8) +800000a8: 00000013 addi x0,x0,0 +800000ac: fe842783 lw x15,-24(x8) +800000b0: 00178713 addi x14,x15,1 +800000b4: fee42423 sw x14,-24(x8) +800000b8: 0007c703 lbu x14,0(x15) +800000bc: fec42783 lw x15,-20(x8) +800000c0: 00178693 addi x13,x15,1 +800000c4: fed42623 sw x13,-20(x8) +800000c8: 00e78023 sb x14,0(x15) +800000cc: 0007c783 lbu x15,0(x15) +800000d0: 00f037b3 sltu x15,x0,x15 +800000d4: 0ff7f793 andi x15,x15,255 +800000d8: fc079ae3 bne x15,x0,800000ac <_Z6strcpyPcS_+0x18> +800000dc: 00000013 addi x0,x0,0 +800000e0: 00000013 addi x0,x0,0 +800000e4: 01c12403 lw x8,28(x2) +800000e8: 02010113 addi x2,x2,32 +800000ec: 00008067 jalr x0,0(x1) + +800000f0 <_Z5alloci>: +800000f0: fe010113 addi x2,x2,-32 +800000f4: 00812e23 sw x8,28(x2) +800000f8: 02010413 addi x8,x2,32 +800000fc: fea42623 sw x10,-20(x8) +80000100: fec42783 lw x15,-20(x8) +80000104: 0037f793 andi x15,x15,3 +80000108: 02078a63 beq x15,x0,8000013c <_Z5alloci+0x4c> +8000010c: fec42703 lw x14,-20(x8) +80000110: 41f75793 srai x15,x14,0x1f +80000114: 01e7d793 srli x15,x15,0x1e +80000118: 00f70733 add x14,x14,x15 +8000011c: 00377713 andi x14,x14,3 +80000120: 40f707b3 sub x15,x14,x15 +80000124: 00078713 addi x14,x15,0 +80000128: 00400793 addi x15,x0,4 +8000012c: 40e787b3 sub x15,x15,x14 +80000130: fec42703 lw x14,-20(x8) +80000134: 00f707b3 add x15,x14,x15 +80000138: fef42623 sw x15,-20(x8) +8000013c: 800127b7 lui x15,0x80012 +80000140: 73c78713 addi x14,x15,1852 # 8001273c <__BSS_END__> +80000144: 800107b7 lui x15,0x80010 +80000148: 0287a783 lw x15,40(x15) # 80010028 <_ZL6allocp> +8000014c: 40f707b3 sub x15,x14,x15 +80000150: fec42703 lw x14,-20(x8) +80000154: 02e7ca63 blt x15,x14,80000188 <_Z5alloci+0x98> +80000158: 800107b7 lui x15,0x80010 +8000015c: 0287a703 lw x14,40(x15) # 80010028 <_ZL6allocp> +80000160: fec42783 lw x15,-20(x8) +80000164: 00f70733 add x14,x14,x15 +80000168: 800107b7 lui x15,0x80010 +8000016c: 02e7a423 sw x14,40(x15) # 80010028 <_ZL6allocp> +80000170: 800107b7 lui x15,0x80010 +80000174: 0287a703 lw x14,40(x15) # 80010028 <_ZL6allocp> +80000178: fec42783 lw x15,-20(x8) +8000017c: 40f007b3 sub x15,x0,x15 +80000180: 00f707b3 add x15,x14,x15 +80000184: 0080006f jal x0,8000018c <_Z5alloci+0x9c> +80000188: 00000793 addi x15,x0,0 +8000018c: 00078513 addi x10,x15,0 +80000190: 01c12403 lw x8,28(x2) +80000194: 02010113 addi x2,x2,32 +80000198: 00008067 jalr x0,0(x1) + +8000019c
: +8000019c: fe010113 addi x2,x2,-32 +800001a0: 00112e23 sw x1,28(x2) +800001a4: 00812c23 sw x8,24(x2) +800001a8: 00912a23 sw x9,20(x2) +800001ac: 02010413 addi x8,x2,32 +800001b0: 800107b7 lui x15,0x80010 +800001b4: 0207a783 lw x15,32(x15) # 80010020 +800001b8: 00078513 addi x10,x15,0 +800001bc: 00000097 auipc x1,0x0 +800001c0: e88080e7 jalr x1,-376(x1) # 80000044 <_Z6strlenPc> +800001c4: 00050793 addi x15,x10,0 +800001c8: 00078513 addi x10,x15,0 +800001cc: 00000097 auipc x1,0x0 +800001d0: f24080e7 jalr x1,-220(x1) # 800000f0 <_Z5alloci> +800001d4: fea42623 sw x10,-20(x8) +800001d8: 800107b7 lui x15,0x80010 +800001dc: 0207a783 lw x15,32(x15) # 80010020 +800001e0: 00078593 addi x11,x15,0 +800001e4: fec42503 lw x10,-20(x8) +800001e8: 00000097 auipc x1,0x0 +800001ec: eac080e7 jalr x1,-340(x1) # 80000094 <_Z6strcpyPcS_> +800001f0: 00000013 addi x0,x0,0 +800001f4: 800107b7 lui x15,0x80010 +800001f8: 0247a783 lw x15,36(x15) # 80010024 +800001fc: 00078513 addi x10,x15,0 +80000200: 00000097 auipc x1,0x0 +80000204: e44080e7 jalr x1,-444(x1) # 80000044 <_Z6strlenPc> +80000208: 00050793 addi x15,x10,0 +8000020c: 00078513 addi x10,x15,0 +80000210: 00000097 auipc x1,0x0 +80000214: ee0080e7 jalr x1,-288(x1) # 800000f0 <_Z5alloci> +80000218: fea42423 sw x10,-24(x8) +8000021c: 800107b7 lui x15,0x80010 +80000220: 0247a783 lw x15,36(x15) # 80010024 +80000224: 00078593 addi x11,x15,0 +80000228: fe842503 lw x10,-24(x8) +8000022c: 00000097 auipc x1,0x0 +80000230: e68080e7 jalr x1,-408(x1) # 80000094 <_Z6strcpyPcS_> +80000234: 00000013 addi x0,x0,0 +80000238: 00400513 addi x10,x0,4 +8000023c: 00000097 auipc x1,0x0 +80000240: eb4080e7 jalr x1,-332(x1) # 800000f0 <_Z5alloci> +80000244: fea42223 sw x10,-28(x8) +80000248: fe442783 lw x15,-28(x8) +8000024c: 01000713 addi x14,x0,16 +80000250: 00e79023 sh x14,0(x15) +80000254: fe442783 lw x15,-28(x8) +80000258: 02000713 addi x14,x0,32 +8000025c: 00e79123 sh x14,2(x15) +80000260: 00000013 addi x0,x0,0 +80000264: fec42503 lw x10,-20(x8) +80000268: 00000097 auipc x1,0x0 +8000026c: ddc080e7 jalr x1,-548(x1) # 80000044 <_Z6strlenPc> +80000270: 00050793 addi x15,x10,0 +80000274: 01079493 slli x9,x15,0x10 +80000278: 0104d493 srli x9,x9,0x10 +8000027c: fe842503 lw x10,-24(x8) +80000280: 00000097 auipc x1,0x0 +80000284: dc4080e7 jalr x1,-572(x1) # 80000044 <_Z6strlenPc> +80000288: 00050793 addi x15,x10,0 +8000028c: 01079793 slli x15,x15,0x10 +80000290: 0107d793 srli x15,x15,0x10 +80000294: 00f487b3 add x15,x9,x15 +80000298: 01079793 slli x15,x15,0x10 +8000029c: 0107d793 srli x15,x15,0x10 +800002a0: 01079713 slli x14,x15,0x10 +800002a4: 41075713 srai x14,x14,0x10 +800002a8: fe442783 lw x15,-28(x8) +800002ac: 00e79123 sh x14,2(x15) +800002b0: 00100793 addi x15,x0,1 +800002b4: 00078513 addi x10,x15,0 +800002b8: 01c12083 lw x1,28(x2) +800002bc: 01812403 lw x8,24(x2) +800002c0: 01412483 lw x9,20(x2) +800002c4: 02010113 addi x2,x2,32 +800002c8: 00008067 jalr x0,0(x1) + +800002cc <_ZL9my_strlenPKc>: +800002cc: fd010113 addi x2,x2,-48 +800002d0: 02812623 sw x8,44(x2) +800002d4: 03010413 addi x8,x2,48 +800002d8: fca42e23 sw x10,-36(x8) +800002dc: fe042623 sw x0,-20(x8) +800002e0: 0100006f jal x0,800002f0 <_ZL9my_strlenPKc+0x24> +800002e4: fec42783 lw x15,-20(x8) +800002e8: 00178793 addi x15,x15,1 +800002ec: fef42623 sw x15,-20(x8) +800002f0: fec42783 lw x15,-20(x8) +800002f4: fdc42703 lw x14,-36(x8) +800002f8: 00f707b3 add x15,x14,x15 +800002fc: 0007c783 lbu x15,0(x15) +80000300: fe0792e3 bne x15,x0,800002e4 <_ZL9my_strlenPKc+0x18> +80000304: fec42783 lw x15,-20(x8) +80000308: 00078513 addi x10,x15,0 +8000030c: 02c12403 lw x8,44(x2) +80000310: 03010113 addi x2,x2,48 +80000314: 00008067 jalr x0,0(x1) + +80000318 <_Z16count_charactersPKcS0_Ph>: +80000318: fd010113 addi x2,x2,-48 +8000031c: 02112623 sw x1,44(x2) +80000320: 02812423 sw x8,40(x2) +80000324: 03010413 addi x8,x2,48 +80000328: fca42e23 sw x10,-36(x8) +8000032c: fcb42c23 sw x11,-40(x8) +80000330: fcc42a23 sw x12,-44(x8) +80000334: fdc42503 lw x10,-36(x8) +80000338: 00000097 auipc x1,0x0 +8000033c: f94080e7 jalr x1,-108(x1) # 800002cc <_ZL9my_strlenPKc> +80000340: fea42023 sw x10,-32(x8) +80000344: fe042623 sw x0,-20(x8) +80000348: 0200006f jal x0,80000368 <_Z16count_charactersPKcS0_Ph+0x50> +8000034c: fec42783 lw x15,-20(x8) +80000350: fd442703 lw x14,-44(x8) +80000354: 00f707b3 add x15,x14,x15 +80000358: 00078023 sb x0,0(x15) +8000035c: fec42783 lw x15,-20(x8) +80000360: 00178793 addi x15,x15,1 +80000364: fef42623 sw x15,-20(x8) +80000368: fec42703 lw x14,-20(x8) +8000036c: fe042783 lw x15,-32(x8) +80000370: fcf74ee3 blt x14,x15,8000034c <_Z16count_charactersPKcS0_Ph+0x34> +80000374: fe042423 sw x0,-24(x8) +80000378: 0780006f jal x0,800003f0 <_Z16count_charactersPKcS0_Ph+0xd8> +8000037c: fe042223 sw x0,-28(x8) +80000380: 0500006f jal x0,800003d0 <_Z16count_charactersPKcS0_Ph+0xb8> +80000384: fe842783 lw x15,-24(x8) +80000388: fdc42703 lw x14,-36(x8) +8000038c: 00f707b3 add x15,x14,x15 +80000390: 0007c703 lbu x14,0(x15) +80000394: fe442783 lw x15,-28(x8) +80000398: fd842683 lw x13,-40(x8) +8000039c: 00f687b3 add x15,x13,x15 +800003a0: 0007c783 lbu x15,0(x15) +800003a4: 02f71063 bne x14,x15,800003c4 <_Z16count_charactersPKcS0_Ph+0xac> +800003a8: fe842783 lw x15,-24(x8) +800003ac: fd442703 lw x14,-44(x8) +800003b0: 00f707b3 add x15,x14,x15 +800003b4: 0007c703 lbu x14,0(x15) +800003b8: 00170713 addi x14,x14,1 +800003bc: 0ff77713 andi x14,x14,255 +800003c0: 00e78023 sb x14,0(x15) +800003c4: fe442783 lw x15,-28(x8) +800003c8: 00178793 addi x15,x15,1 +800003cc: fef42223 sw x15,-28(x8) +800003d0: fe442783 lw x15,-28(x8) +800003d4: fd842703 lw x14,-40(x8) +800003d8: 00f707b3 add x15,x14,x15 +800003dc: 0007c783 lbu x15,0(x15) +800003e0: fa0792e3 bne x15,x0,80000384 <_Z16count_charactersPKcS0_Ph+0x6c> +800003e4: fe842783 lw x15,-24(x8) +800003e8: 00178793 addi x15,x15,1 +800003ec: fef42423 sw x15,-24(x8) +800003f0: fe842703 lw x14,-24(x8) +800003f4: fe042783 lw x15,-32(x8) +800003f8: f8f742e3 blt x14,x15,8000037c <_Z16count_charactersPKcS0_Ph+0x64> +800003fc: 00000013 addi x0,x0,0 +80000400: 00000013 addi x0,x0,0 +80000404: 02c12083 lw x1,44(x2) +80000408: 02812403 lw x8,40(x2) +8000040c: 03010113 addi x2,x2,48 +80000410: 00008067 jalr x0,0(x1) + +Disassembly of section .data: + +80010000 <__DATA_BEGIN__>: +80010000: 706d .2byte 0x706d +80010002: 6261 .2byte 0x6261 +80010004: 0069 .2byte 0x69 + ... + +Disassembly of section .rodata: + +80000414 : +80000414: 6261 .2byte 0x6261 +80000416: 66656463 bltu x10,x6,80000a7e +8000041a: 6a696867 .4byte 0x6a696867 +8000041e: 6e6d6c6b .4byte 0x6e6d6c6b +80000422: 7271706f jal x0,80018348 <__BSS_END__+0x5c0c> +80000426: 77757473 .4byte 0x77757473 +8000042a: 7978 .2byte 0x7978 +8000042c: 007a .2byte 0x7a + +8000042e : +8000042e: 0000 .2byte 0x0 +80000430: 616a .2byte 0x616a +80000432: 656e .2byte 0x656e +80000434: 0000006b .4byte 0x6b +80000438: 61776f6b .4byte 0x61776f6b +8000043c: 736c .2byte 0x736c +8000043e: 0069696b .4byte 0x69696b + +Disassembly of section .eh_frame: + +80000444 <.eh_frame>: +80000444: 0010 .2byte 0x10 +80000446: 0000 .2byte 0x0 +80000448: 0000 .2byte 0x0 +8000044a: 0000 .2byte 0x0 +8000044c: 00527a03 .4byte 0x527a03 +80000450: 7c01 .2byte 0x7c01 +80000452: 0101 .2byte 0x101 +80000454: 00020d1b .4byte 0x20d1b +80000458: 0020 .2byte 0x20 +8000045a: 0000 .2byte 0x0 +8000045c: 0018 .2byte 0x18 +8000045e: 0000 .2byte 0x0 +80000460: fbe4 .2byte 0xfbe4 +80000462: ffff .2byte 0xffff +80000464: 0050 .2byte 0x50 +80000466: 0000 .2byte 0x0 +80000468: 4400 .2byte 0x4400 +8000046a: 300e .2byte 0x300e +8000046c: 8844 .2byte 0x8844 +8000046e: 4401 .2byte 0x4401 +80000470: 080c .2byte 0x80c +80000472: 7c00 .2byte 0x7c00 +80000474: 0cc8 .2byte 0xcc8 +80000476: 3002 .2byte 0x3002 +80000478: 0e44 .2byte 0xe44 +8000047a: 0000 .2byte 0x0 +8000047c: 0020 .2byte 0x20 +8000047e: 0000 .2byte 0x0 +80000480: 003c .2byte 0x3c +80000482: 0000 .2byte 0x0 +80000484: fc10 .2byte 0xfc10 +80000486: ffff .2byte 0xffff +80000488: 005c .2byte 0x5c +8000048a: 0000 .2byte 0x0 +8000048c: 4400 .2byte 0x4400 +8000048e: 200e .2byte 0x200e +80000490: 8844 .2byte 0x8844 +80000492: 4401 .2byte 0x4401 +80000494: 080c .2byte 0x80c +80000496: 0200 .2byte 0x200 +80000498: c848 .2byte 0xc848 +8000049a: 020c .2byte 0x20c +8000049c: 4420 .2byte 0x4420 +8000049e: 000e .2byte 0xe +800004a0: 0020 .2byte 0x20 +800004a2: 0000 .2byte 0x0 +800004a4: 0060 .2byte 0x60 +800004a6: 0000 .2byte 0x0 +800004a8: fc48 .2byte 0xfc48 +800004aa: ffff .2byte 0xffff +800004ac: 00ac .2byte 0xac +800004ae: 0000 .2byte 0x0 +800004b0: 4400 .2byte 0x4400 +800004b2: 200e .2byte 0x200e +800004b4: 8844 .2byte 0x8844 +800004b6: 4401 .2byte 0x4401 +800004b8: 080c .2byte 0x80c +800004ba: 0200 .2byte 0x200 +800004bc: c898 .2byte 0xc898 +800004be: 020c .2byte 0x20c +800004c0: 4420 .2byte 0x4420 +800004c2: 000e .2byte 0xe +800004c4: 002c .2byte 0x2c +800004c6: 0000 .2byte 0x0 +800004c8: 0084 .2byte 0x84 +800004ca: 0000 .2byte 0x0 +800004cc: fcd0 .2byte 0xfcd0 +800004ce: ffff .2byte 0xffff +800004d0: 0130 .2byte 0x130 +800004d2: 0000 .2byte 0x0 +800004d4: 4400 .2byte 0x4400 +800004d6: 200e .2byte 0x200e +800004d8: 814c .2byte 0x814c +800004da: 8801 .2byte 0x8801 +800004dc: 8902 .2byte 0x8902 +800004de: 080c4403 lbu x8,128(x24) +800004e2: 0300 .2byte 0x300 +800004e4: 010c .2byte 0x10c +800004e6: 44c1 .2byte 0x44c1 +800004e8: 0cc8 .2byte 0xcc8 +800004ea: 2002 .2byte 0x2002 +800004ec: c944 .2byte 0xc944 +800004ee: 0e44 .2byte 0xe44 +800004f0: 0000 .2byte 0x0 +800004f2: 0000 .2byte 0x0 +800004f4: 0020 .2byte 0x20 +800004f6: 0000 .2byte 0x0 +800004f8: 00b4 .2byte 0xb4 +800004fa: 0000 .2byte 0x0 +800004fc: fdd0 .2byte 0xfdd0 +800004fe: ffff .2byte 0xffff +80000500: 004c .2byte 0x4c +80000502: 0000 .2byte 0x0 +80000504: 4400 .2byte 0x4400 +80000506: 300e .2byte 0x300e +80000508: 8844 .2byte 0x8844 +8000050a: 4401 .2byte 0x4401 +8000050c: 080c .2byte 0x80c +8000050e: 7800 .2byte 0x7800 +80000510: 0cc8 .2byte 0xcc8 +80000512: 3002 .2byte 0x3002 +80000514: 0e44 .2byte 0xe44 +80000516: 0000 .2byte 0x0 +80000518: 0024 .2byte 0x24 +8000051a: 0000 .2byte 0x0 +8000051c: 00d8 .2byte 0xd8 +8000051e: 0000 .2byte 0x0 +80000520: fdf8 .2byte 0xfdf8 +80000522: ffff .2byte 0xffff +80000524: 00fc .2byte 0xfc +80000526: 0000 .2byte 0x0 +80000528: 4400 .2byte 0x4400 +8000052a: 300e .2byte 0x300e +8000052c: 8148 .2byte 0x8148 +8000052e: 8801 .2byte 0x8801 +80000530: 4402 .2byte 0x4402 +80000532: 080c .2byte 0x80c +80000534: 0200 .2byte 0x200 +80000536: c1e0 .2byte 0xc1e0 +80000538: c844 .2byte 0xc844 +8000053a: 020c .2byte 0x20c +8000053c: 4430 .2byte 0x4430 +8000053e: 000e .2byte 0xe + +Disassembly of section .sdata: + +80010020 : +80010020: 0430 .2byte 0x430 +80010022: 8000 .2byte 0x8000 + +80010024 : +80010024: 0438 .2byte 0x438 +80010026: 8000 .2byte 0x8000 + +80010028 <_ZL6allocp>: +80010028: 002c .2byte 0x2c +8001002a: 8001 .2byte 0x8001 + +Disassembly of section .bss: + +8001002c <_ZL8allocbuf>: + ... + +Disassembly of section .comment: + +00000000 <.comment>: + 0: 3a434347 .4byte 0x3a434347 + 4: 2820 .2byte 0x2820 + 6: 2029 .2byte 0x2029 + 8: 3231 .2byte 0x3231 + a: 322e .2byte 0x322e + c: 302e .2byte 0x302e + ... + +Disassembly of section .riscv.attributes: + +00000000 <.riscv.attributes>: + 0: 1b41 .2byte 0x1b41 + 2: 0000 .2byte 0x0 + 4: 7200 .2byte 0x7200 + 6: 7369 .2byte 0x7369 + 8: 01007663 bgeu x0,x16,14 <_start-0x7fffffec> + c: 0011 .2byte 0x11 + e: 0000 .2byte 0x0 + 10: 1004 .2byte 0x1004 + 12: 7205 .2byte 0x7205 + 14: 3376 .2byte 0x3376 + 16: 6932 .2byte 0x6932 + 18: 7032 .2byte 0x7032 + 1a: 0031 .2byte 0x31 + +Disassembly of section .debug_aranges: + +00000000 <.debug_aranges>: + 0: 001c .2byte 0x1c + 2: 0000 .2byte 0x0 + 4: 0002 .2byte 0x2 + 6: 0000 .2byte 0x0 + 8: 0000 .2byte 0x0 + a: 0004 .2byte 0x4 + c: 0000 .2byte 0x0 + e: 0000 .2byte 0x0 + 10: 0000 .2byte 0x0 + 12: 8000 .2byte 0x8000 + 14: 0044 .2byte 0x44 + ... + 1e: 0000 .2byte 0x0 + 20: 001c .2byte 0x1c + 22: 0000 .2byte 0x0 + 24: 0002 .2byte 0x2 + 26: 0024 .2byte 0x24 + 28: 0000 .2byte 0x0 + 2a: 0004 .2byte 0x4 + 2c: 0000 .2byte 0x0 + 2e: 0000 .2byte 0x0 + 30: 0044 .2byte 0x44 + 32: 8000 .2byte 0x8000 + 34: 0288 .2byte 0x288 + ... + 3e: 0000 .2byte 0x0 + 40: 001c .2byte 0x1c + 42: 0000 .2byte 0x0 + 44: 0002 .2byte 0x2 + 46: 01f9 .2byte 0x1f9 + 48: 0000 .2byte 0x0 + 4a: 0004 .2byte 0x4 + 4c: 0000 .2byte 0x0 + 4e: 0000 .2byte 0x0 + 50: 02cc .2byte 0x2cc + 52: 8000 .2byte 0x8000 + 54: 0148 .2byte 0x148 + ... + +Disassembly of section .debug_info: + +00000000 <.debug_info>: + 0: 0020 .2byte 0x20 + 2: 0000 .2byte 0x0 + 4: 0005 .2byte 0x5 + 6: 0401 .2byte 0x401 + 8: 0000 .2byte 0x0 + a: 0000 .2byte 0x0 + c: 0001 .2byte 0x1 + e: 0000 .2byte 0x0 + 10: 0000 .2byte 0x0 + 12: 0000 .2byte 0x0 + 14: 4480 .2byte 0x4480 + 16: 0000 .2byte 0x0 + 18: 0000 .2byte 0x0 + 1a: 0008 .2byte 0x8 + 1c: 0000 .2byte 0x0 + 1e: 0020 .2byte 0x20 + 20: 0000 .2byte 0x0 + 22: 8001 .2byte 0x8001 + 24: 01d1 .2byte 0x1d1 + 26: 0000 .2byte 0x0 + 28: 0005 .2byte 0x5 + 2a: 0401 .2byte 0x401 + 2c: 0014 .2byte 0x14 + 2e: 0000 .2byte 0x0 + 30: f308 .2byte 0xf308 + 32: 001c .2byte 0x1c + 34: 2100 .2byte 0x2100 + 36: 0020 .2byte 0x20 + 38: 0000 .2byte 0x0 + 3a: 0000 .2byte 0x0 + 3c: 0000 .2byte 0x0 + 3e: 0044 .2byte 0x44 + 40: 8000 .2byte 0x8000 + 42: 0288 .2byte 0x288 + 44: 0000 .2byte 0x0 + 46: 0086 .2byte 0x86 + 48: 0000 .2byte 0x0 + 4a: 0000 .2byte 0x0 + 4c: 0000 .2byte 0x0 + 4e: 0101 .2byte 0x101 + 50: 9006 .2byte 0x9006 + 52: 0025 .2byte 0x25 + 54: 0900 .2byte 0x900 + 56: 00002523 sw x0,10(x0) # a <_start-0x7ffffff6> + 5a: 2502 .2byte 0x2502 + 5c: 3d18 .2byte 0x3d18 + 5e: 0000 .2byte 0x0 + 60: 0100 .2byte 0x100 + 62: 0502 .2byte 0x502 + 64: 0631 .2byte 0x631 + 66: 0000 .2byte 0x0 + 68: 0401 .2byte 0x401 + 6a: 7505 .2byte 0x7505 + 6c: 0024 .2byte 0x24 + 6e: 0100 .2byte 0x100 + 70: 0508 .2byte 0x508 + 72: 124d .2byte 0x124d + 74: 0000 .2byte 0x0 + 76: 0101 .2byte 0x101 + 78: 3408 .2byte 0x3408 + 7a: 01000027 .4byte 0x1000027 + 7e: 0702 .2byte 0x702 + 80: 04a2 .2byte 0x4a2 + 82: 0000 .2byte 0x0 + 84: 0401 .2byte 0x401 + 86: 0020b007 .4byte 0x20b007 + 8a: 0100 .2byte 0x100 + 8c: 0708 .2byte 0x708 + 8e: 2f69 .2byte 0x2f69 + 90: 0000 .2byte 0x0 + 92: 040a .2byte 0x40a + 94: 6905 .2byte 0x6905 + 96: 746e .2byte 0x746e + 98: 0100 .2byte 0x100 + 9a: 0704 .2byte 0x704 + 9c: 2c59 .2byte 0x2c59 + 9e: 0000 .2byte 0x0 + a0: d705 .2byte 0xd705 + a2: 0025 .2byte 0x25 + a4: 0300 .2byte 0x300 + a6: 008c .2byte 0x8c + a8: 0000 .2byte 0x0 + aa: 0305 .2byte 0x305 + ac: 0020 .2byte 0x20 + ae: 8001 .2byte 0x8001 + b0: 9106 .2byte 0x9106 + b2: 0000 .2byte 0x0 + b4: 0100 .2byte 0x100 + b6: 0801 .2byte 0x801 + b8: 00002597 auipc x11,0x2 + bc: dc05 .2byte 0xdc05 + be: 0025 .2byte 0x25 + c0: 0400 .2byte 0x400 + c2: 008c .2byte 0x8c + c4: 0000 .2byte 0x0 + c6: 0305 .2byte 0x305 + c8: 0024 .2byte 0x24 + ca: 8001 .2byte 0x8001 + cc: 0000910b .4byte 0x910b + d0: b900 .2byte 0xb900 + d2: 0000 .2byte 0x0 + d4: 0c00 .2byte 0xc00 + d6: 0075 .2byte 0x75 + d8: 0000 .2byte 0x0 + da: 0300270f .4byte 0x300270f + de: 103c .2byte 0x103c + e0: 0000 .2byte 0x0 + e2: 0d16 .2byte 0xd16 + e4: 00a8 .2byte 0xa8 + e6: 0000 .2byte 0x0 + e8: 0305 .2byte 0x305 + ea: 002c .2byte 0x2c + ec: 8001 .2byte 0x8001 + ee: 001cc203 lbu x4,1(x25) + f2: 1700 .2byte 0x1700 + f4: 8c0e .2byte 0x8c0e + f6: 0000 .2byte 0x0 + f8: 0500 .2byte 0x500 + fa: 01002803 lw x16,16(x0) # 10 <_start-0x7ffffff0> + fe: 0d80 .2byte 0xd80 + 100: 291d .2byte 0x291d + 102: 0000 .2byte 0x0 + 104: 2701 .2byte 0x2701 + 106: 6e05 .2byte 0x6e05 + 108: 0000 .2byte 0x0 + 10a: 9c00 .2byte 0x9c00 + 10c: 0001 .2byte 0x1 + 10e: 3080 .2byte 0x3080 + 110: 0001 .2byte 0x1 + 112: 0100 .2byte 0x100 + 114: 439c .2byte 0x439c + 116: 0001 .2byte 0x1 + 118: 0400 .2byte 0x400 + 11a: 3170 .2byte 0x3170 + 11c: 2900 .2byte 0x2900 + 11e: 8c11 .2byte 0x8c11 + 120: 0000 .2byte 0x0 + 122: 0200 .2byte 0x200 + 124: 6c91 .2byte 0x6c91 + 126: 7004 .2byte 0x7004 + 128: 0032 .2byte 0x32 + 12a: 112d .2byte 0x112d + 12c: 008c .2byte 0x8c + 12e: 0000 .2byte 0x0 + 130: 9102 .2byte 0x9102 + 132: 0e68 .2byte 0xe68 + 134: 30f4 .2byte 0x30f4 + 136: 0000 .2byte 0x0 + 138: 0104 .2byte 0x104 + 13a: 1031 .2byte 0x1031 + 13c: 0000012f .4byte 0x12f + 140: 32007807 .4byte 0x32007807 + 144: 0031 .2byte 0x31 + 146: 0000 .2byte 0x0 + 148: 0700 .2byte 0x700 + 14a: 0079 .2byte 0x79 + 14c: 00003133 sltu x2,x0,x0 + 150: 0200 .2byte 0x200 + 152: 0300 .2byte 0x300 + 154: 2824 .2byte 0x2824 + 156: 0000 .2byte 0x0 + 158: 1936 .2byte 0x1936 + 15a: 013d .2byte 0x13d + 15c: 0000 .2byte 0x0 + 15e: 9102 .2byte 0x9102 + 160: 0664 .2byte 0x664 + 162: 0000010f .4byte 0x10f + 166: 0f00 .2byte 0xf00 + 168: 00002433 slt x8,x0,x0 + 16c: 1901 .2byte 0x1901 + 16e: 001b9707 .4byte 0x1b9707 + 172: 8c00 .2byte 0x8c00 + 174: 0000 .2byte 0x0 + 176: f000 .2byte 0xf000 + 178: 0000 .2byte 0x0 + 17a: ac80 .2byte 0xac80 + 17c: 0000 .2byte 0x0 + 17e: 0100 .2byte 0x100 + 180: 6e9c .2byte 0x6e9c + 182: 0001 .2byte 0x1 + 184: 0200 .2byte 0x200 + 186: 006e .2byte 0x6e + 188: 1119 .2byte 0x1119 + 18a: 006e .2byte 0x6e + 18c: 0000 .2byte 0x0 + 18e: 9102 .2byte 0x9102 + 190: 006c .2byte 0x6c + 192: 3d10 .2byte 0x3d10 + 194: 000a .2byte 0xa + 196: 0100 .2byte 0x100 + 198: 060e .2byte 0x60e + 19a: 102e .2byte 0x102e + 19c: 0000 .2byte 0x0 + 19e: 0094 .2byte 0x94 + 1a0: 8000 .2byte 0x8000 + 1a2: 005c .2byte 0x5c + 1a4: 0000 .2byte 0x0 + 1a6: 9c01 .2byte 0x9c01 + 1a8: 01a1 .2byte 0x1a1 + 1aa: 0000 .2byte 0x0 + 1ac: 7302 .2byte 0x7302 + 1ae: 0e00 .2byte 0xe00 + 1b0: 00008c13 addi x24,x1,0 + 1b4: 0200 .2byte 0x200 + 1b6: 6c91 .2byte 0x6c91 + 1b8: 7402 .2byte 0x7402 + 1ba: 0e00 .2byte 0xe00 + 1bc: 8c1c .2byte 0x8c1c + 1be: 0000 .2byte 0x0 + 1c0: 0200 .2byte 0x200 + 1c2: 6891 .2byte 0x6891 + 1c4: 1100 .2byte 0x1100 + 1c6: 358e .2byte 0x358e + 1c8: 0000 .2byte 0x0 + 1ca: 0601 .2byte 0x601 + 1cc: c205 .2byte 0xc205 + 1ce: 6e00000b .4byte 0x6e00000b + 1d2: 0000 .2byte 0x0 + 1d4: 4400 .2byte 0x4400 + 1d6: 0000 .2byte 0x0 + 1d8: 5080 .2byte 0x5080 + 1da: 0000 .2byte 0x0 + 1dc: 0100 .2byte 0x100 + 1de: 029c .2byte 0x29c + 1e0: 12060073 sfence.vma x12,x0 + 1e4: 008c .2byte 0x8c + 1e6: 0000 .2byte 0x0 + 1e8: 9102 .2byte 0x9102 + 1ea: 045c .2byte 0x45c + 1ec: 0070 .2byte 0x70 + 1ee: 0c08 .2byte 0xc08 + 1f0: 008c .2byte 0x8c + 1f2: 0000 .2byte 0x0 + 1f4: 9102 .2byte 0x9102 + 1f6: 006c .2byte 0x6c + 1f8: 5700 .2byte 0x5700 + 1fa: 0001 .2byte 0x1 + 1fc: 0500 .2byte 0x500 + 1fe: 0100 .2byte 0x100 + 200: 4804 .2byte 0x4804 + 202: 0001 .2byte 0x1 + 204: 0700 .2byte 0x700 + 206: 00001cf3 .4byte 0x1cf3 + 20a: 8421 .2byte 0x8421 + 20c: 0000 .2byte 0x0 + 20e: 0000 .2byte 0x0 + 210: 0000 .2byte 0x0 + 212: cc00 .2byte 0xcc00 + 214: 0002 .2byte 0x2 + 216: 4880 .2byte 0x4880 + 218: 0001 .2byte 0x1 + 21a: 8c00 .2byte 0x8c00 + 21c: 0002 .2byte 0x2 + 21e: 0400 .2byte 0x400 + 220: 000c .2byte 0xc + 222: 0100 .2byte 0x100 + 224: 0601 .2byte 0x601 + 226: 2590 .2byte 0x2590 + 228: 0000 .2byte 0x0 + 22a: 0201 .2byte 0x201 + 22c: 3105 .2byte 0x3105 + 22e: 0006 .2byte 0x6 + 230: 0100 .2byte 0x100 + 232: 0504 .2byte 0x504 + 234: 2475 .2byte 0x2475 + 236: 0000 .2byte 0x0 + 238: 0801 .2byte 0x801 + 23a: 4d05 .2byte 0x4d05 + 23c: 0012 .2byte 0x12 + 23e: 0800 .2byte 0x800 + 240: 3546 .2byte 0x3546 + 242: 0000 .2byte 0x0 + 244: 2e02 .2byte 0x2e02 + 246: 5218 .2byte 0x5218 + 248: 0000 .2byte 0x0 + 24a: 0100 .2byte 0x100 + 24c: 0801 .2byte 0x801 + 24e: 2734 .2byte 0x2734 + 250: 0000 .2byte 0x0 + 252: 0201 .2byte 0x201 + 254: 0004a207 .4byte 0x4a207 + 258: 0100 .2byte 0x100 + 25a: 0704 .2byte 0x704 + 25c: 20b0 .2byte 0x20b0 + 25e: 0000 .2byte 0x0 + 260: 0801 .2byte 0x801 + 262: 002f6907 .4byte 0x2f6907 + 266: 0900 .2byte 0x900 + 268: 0504 .2byte 0x504 + 26a: 6e69 .2byte 0x6e69 + 26c: 0074 .2byte 0x74 + 26e: 0401 .2byte 0x401 + 270: 002c5907 .4byte 0x2c5907 + 274: 0a00 .2byte 0xa00 + 276: 357a .2byte 0x357a + 278: 0000 .2byte 0x0 + 27a: 0c01 .2byte 0xc01 + 27c: 4e06 .2byte 0x4e06 + 27e: 0035 .2byte 0x35 + 280: 1800 .2byte 0x1800 + 282: fc800003 lb x0,-56(x0) # ffffffc8 <__BSS_END__+0x7ffed88c> + 286: 0000 .2byte 0x0 + 288: 0100 .2byte 0x100 + 28a: 119c .2byte 0x119c + 28c: 0001 .2byte 0x1 + 28e: 0200 .2byte 0x200 + 290: 0000359b .4byte 0x359b + 294: 00011123 sh x0,2(x2) + 298: 0200 .2byte 0x200 + 29a: 5c91 .2byte 0x5c91 + 29c: 3602 .2byte 0x3602 + 29e: 0035 .2byte 0x35 + 2a0: 3800 .2byte 0x3800 + 2a2: 0111 .2byte 0x111 + 2a4: 0000 .2byte 0x0 + 2a6: 9102 .2byte 0x9102 + 2a8: 0258 .2byte 0x258 + 2aa: 3595 .2byte 0x3595 + 2ac: 0000 .2byte 0x0 + 2ae: 2248 .2byte 0x2248 + 2b0: 0001 .2byte 0x1 + 2b2: 0200 .2byte 0x200 + 2b4: 5491 .2byte 0x5491 + 2b6: 6b04 .2byte 0x6b04 + 2b8: 0035 .2byte 0x35 + 2ba: 0e00 .2byte 0xe00 + 2bc: 006e .2byte 0x6e + 2be: 0000 .2byte 0x0 + 2c0: 9102 .2byte 0x9102 + 2c2: 0b60 .2byte 0xb60 + 2c4: 0344 .2byte 0x344 + 2c6: 8000 .2byte 0x8000 + 2c8: 0030 .2byte 0x30 + 2ca: 0000 .2byte 0x0 + 2cc: 00e4 .2byte 0xe4 + 2ce: 0000 .2byte 0x0 + 2d0: 10006903 .4byte 0x10006903 + 2d4: 6e0e .2byte 0x6e0e + 2d6: 0000 .2byte 0x0 + 2d8: 0200 .2byte 0x200 + 2da: 6c91 .2byte 0x6c91 + 2dc: 0500 .2byte 0x500 + 2de: 0374 .2byte 0x374 + 2e0: 8000 .2byte 0x8000 + 2e2: 0088 .2byte 0x88 + 2e4: 0000 .2byte 0x0 + 2e6: 14006903 .4byte 0x14006903 + 2ea: 6e0e .2byte 0x6e0e + 2ec: 0000 .2byte 0x0 + 2ee: 0200 .2byte 0x200 + 2f0: 6891 .2byte 0x6891 + 2f2: 7c05 .2byte 0x7c05 + 2f4: 68800003 lb x0,1672(x0) # 688 <_start-0x7ffff978> + 2f8: 0000 .2byte 0x0 + 2fa: 0300 .2byte 0x300 + 2fc: 006a .2byte 0x6a + 2fe: 1215 .2byte 0x1215 + 300: 006e .2byte 0x6e + 302: 0000 .2byte 0x0 + 304: 9102 .2byte 0x9102 + 306: 0064 .2byte 0x64 + 308: 0000 .2byte 0x0 + 30a: 1d06 .2byte 0x1d06 + 30c: 0001 .2byte 0x1 + 30e: 0100 .2byte 0x100 + 310: 0801 .2byte 0x801 + 312: 00002597 auipc x11,0x2 + 316: 160c .2byte 0x160c + 318: 0001 .2byte 0x1 + 31a: 0600 .2byte 0x600 + 31c: 0046 .2byte 0x46 + 31e: 0000 .2byte 0x0 + 320: 8b0d .2byte 0x8b0d + 322: 0035 .2byte 0x35 + 324: 0100 .2byte 0x100 + 326: 0c04 .2byte 0xc04 + 328: 006e .2byte 0x6e + 32a: 0000 .2byte 0x0 + 32c: 02cc .2byte 0x2cc + 32e: 8000 .2byte 0x8000 + 330: 004c .2byte 0x4c + 332: 0000 .2byte 0x0 + 334: 9c01 .2byte 0x9c01 + 336: 730e .2byte 0x730e + 338: 7274 .2byte 0x7274 + 33a: 0100 .2byte 0x100 + 33c: 2204 .2byte 0x2204 + 33e: 0111 .2byte 0x111 + 340: 0000 .2byte 0x0 + 342: 9102 .2byte 0x9102 + 344: 045c .2byte 0x45c + 346: 00003573 .4byte 0x3573 + 34a: 6e05 .2byte 0x6e05 + 34c: 0000 .2byte 0x0 + 34e: 0200 .2byte 0x200 + 350: 6c91 .2byte 0x6c91 + ... + +Disassembly of section .debug_abbrev: + +00000000 <.debug_abbrev>: + 0: 1101 .2byte 0x1101 + 2: 1000 .2byte 0x1000 + 4: 12011117 auipc x2,0x12011 + 8: 1b0e030f .4byte 0x1b0e030f + c: 250e .2byte 0x250e + e: 130e .2byte 0x130e + 10: 0005 .2byte 0x5 + 12: 0000 .2byte 0x0 + 14: 2401 .2byte 0x2401 + 16: 0b00 .2byte 0xb00 + 18: 030b3e0b .4byte 0x30b3e0b + 1c: 000e .2byte 0xe + 1e: 0200 .2byte 0x200 + 20: 0005 .2byte 0x5 + 22: 213a0803 lb x16,531(x20) + 26: 3b01 .2byte 0x3b01 + 28: 490b390b .4byte 0x490b390b + 2c: 00180213 addi x4,x16,1 + 30: 0300 .2byte 0x300 + 32: 0034 .2byte 0x34 + 34: 213a0e03 lb x28,531(x20) + 38: 3b01 .2byte 0x3b01 + 3a: 490b390b .4byte 0x490b390b + 3e: 00180213 addi x4,x16,1 + 42: 0400 .2byte 0x400 + 44: 0034 .2byte 0x34 + 46: 213a0803 lb x16,531(x20) + 4a: 3b01 .2byte 0x3b01 + 4c: 490b390b .4byte 0x490b390b + 50: 00180213 addi x4,x16,1 + 54: 0500 .2byte 0x500 + 56: 0034 .2byte 0x34 + 58: 213a0e03 lb x28,531(x20) + 5c: 3b01 .2byte 0x3b01 + 5e: 0921390b .4byte 0x921390b + 62: 1349 .2byte 0x1349 + 64: 1802193f 0f060000 .8byte 0xf0600001802193f + 6c: 0b00 .2byte 0xb00 + 6e: 0421 .2byte 0x421 + 70: 1349 .2byte 0x1349 + 72: 0000 .2byte 0x0 + 74: 03000d07 .4byte 0x3000d07 + 78: 3a08 .2byte 0x3a08 + 7a: 0121 .2byte 0x121 + 7c: 21390b3b .4byte 0x21390b3b + 80: 4915 .2byte 0x4915 + 82: 000b3813 sltiu x16,x22,0 + 86: 0800 .2byte 0x800 + 88: 0111 .2byte 0x111 + 8a: 0e25 .2byte 0xe25 + 8c: 1f030b13 addi x22,x6,496 + 90: 01111f1b .4byte 0x1111f1b + 94: 0612 .2byte 0x612 + 96: 1710 .2byte 0x1710 + 98: 1779 .2byte 0x1779 + 9a: 0000 .2byte 0x0 + 9c: 1609 .2byte 0x1609 + 9e: 0300 .2byte 0x300 + a0: 3a0e .2byte 0x3a0e + a2: 390b3b0b .4byte 0x390b3b0b + a6: 0013490b .4byte 0x13490b + aa: 0a00 .2byte 0xa00 + ac: 0024 .2byte 0x24 + ae: 0b3e0b0b .4byte 0xb3e0b0b + b2: 00000803 lb x16,0(x0) # 0 <_start-0x80000000> + b6: 4901010b .4byte 0x4901010b + ba: 00130113 addi x2,x6,1 + be: 0c00 .2byte 0xc00 + c0: 0021 .2byte 0x21 + c2: 1349 .2byte 0x1349 + c4: 0000052f .4byte 0x52f + c8: 2e0d .2byte 0x2e0d + ca: 3f01 .2byte 0x3f01 + cc: 0319 .2byte 0x319 + ce: 3a0e .2byte 0x3a0e + d0: 390b3b0b .4byte 0x390b3b0b + d4: 1113490b .4byte 0x1113490b + d8: 1201 .2byte 0x1201 + da: 4006 .2byte 0x4006 + dc: 7c18 .2byte 0x7c18 + de: 0119 .2byte 0x119 + e0: 0e000013 addi x0,x0,224 + e4: 0e030113 addi x2,x6,224 + e8: 0b3a0b0b .4byte 0xb3a0b0b + ec: 0b390b3b .4byte 0xb390b3b + f0: 1301 .2byte 0x1301 + f2: 0000 .2byte 0x0 + f4: 3f012e0f .4byte 0x3f012e0f + f8: 0319 .2byte 0x319 + fa: 3a0e .2byte 0x3a0e + fc: 390b3b0b .4byte 0x390b3b0b + 100: 490e6e0b .4byte 0x490e6e0b + 104: 12011113 .4byte 0x12011113 + 108: 4006 .2byte 0x4006 + 10a: 7a18 .2byte 0x7a18 + 10c: 0119 .2byte 0x119 + 10e: 10000013 addi x0,x0,256 + 112: 012e .2byte 0x12e + 114: 0e03193f 0b3b0b3a .8byte 0xb3b0b3a0e03193f + 11c: 0b39 .2byte 0xb39 + 11e: 0e6e .2byte 0xe6e + 120: 0111 .2byte 0x111 + 122: 0612 .2byte 0x612 + 124: 1840 .2byte 0x1840 + 126: 197a .2byte 0x197a + 128: 1301 .2byte 0x1301 + 12a: 0000 .2byte 0x0 + 12c: 2e11 .2byte 0x2e11 + 12e: 3f01 .2byte 0x3f01 + 130: 0319 .2byte 0x319 + 132: 3a0e .2byte 0x3a0e + 134: 390b3b0b .4byte 0x390b3b0b + 138: 490e6e0b .4byte 0x490e6e0b + 13c: 12011113 .4byte 0x12011113 + 140: 4006 .2byte 0x4006 + 142: 7a18 .2byte 0x7a18 + 144: 0019 .2byte 0x19 + 146: 0000 .2byte 0x0 + 148: 2401 .2byte 0x2401 + 14a: 0b00 .2byte 0xb00 + 14c: 030b3e0b .4byte 0x30b3e0b + 150: 000e .2byte 0xe + 152: 0200 .2byte 0x200 + 154: 0005 .2byte 0x5 + 156: 213a0e03 lb x28,531(x20) + 15a: 3b01 .2byte 0x3b01 + 15c: 0c21 .2byte 0xc21 + 15e: 0b39 .2byte 0xb39 + 160: 1349 .2byte 0x1349 + 162: 1802 .2byte 0x1802 + 164: 0000 .2byte 0x0 + 166: 03003403 .4byte 0x3003403 + 16a: 3a08 .2byte 0x3a08 + 16c: 0121 .2byte 0x121 + 16e: 0b390b3b .4byte 0xb390b3b + 172: 1349 .2byte 0x1349 + 174: 1802 .2byte 0x1802 + 176: 0000 .2byte 0x0 + 178: 3404 .2byte 0x3404 + 17a: 0300 .2byte 0x300 + 17c: 3a0e .2byte 0x3a0e + 17e: 0121 .2byte 0x121 + 180: 21390b3b .4byte 0x21390b3b + 184: 4909 .2byte 0x4909 + 186: 00180213 addi x4,x16,1 + 18a: 0500 .2byte 0x500 + 18c: 0111010b .4byte 0x111010b + 190: 0612 .2byte 0x612 + 192: 0000 .2byte 0x0 + 194: 0f06 .2byte 0xf06 + 196: 0b00 .2byte 0xb00 + 198: 0421 .2byte 0x421 + 19a: 1349 .2byte 0x1349 + 19c: 0000 .2byte 0x0 + 19e: 25011107 .4byte 0x25011107 + 1a2: 130e .2byte 0x130e + 1a4: 1b1f030b .4byte 0x1b1f030b + 1a8: 111f 1201 1006 .byte 0x1f, 0x11, 0x01, 0x12, 0x06, 0x10 + 1ae: 00177917 auipc x18,0x177 + 1b2: 0800 .2byte 0x800 + 1b4: 0016 .2byte 0x16 + 1b6: 0b3a0e03 lb x28,179(x20) + 1ba: 0b390b3b .4byte 0xb390b3b + 1be: 1349 .2byte 0x1349 + 1c0: 0000 .2byte 0x0 + 1c2: 2409 .2byte 0x2409 + 1c4: 0b00 .2byte 0xb00 + 1c6: 030b3e0b .4byte 0x30b3e0b + 1ca: 0008 .2byte 0x8 + 1cc: 0a00 .2byte 0xa00 + 1ce: 012e .2byte 0x12e + 1d0: 0e03193f 0b3b0b3a .8byte 0xb3b0b3a0e03193f + 1d8: 0b39 .2byte 0xb39 + 1da: 0e6e .2byte 0xe6e + 1dc: 0111 .2byte 0x111 + 1de: 0612 .2byte 0x612 + 1e0: 1840 .2byte 0x1840 + 1e2: 197c .2byte 0x197c + 1e4: 1301 .2byte 0x1301 + 1e6: 0000 .2byte 0x0 + 1e8: 11010b0b .4byte 0x11010b0b + 1ec: 1201 .2byte 0x1201 + 1ee: 0106 .2byte 0x106 + 1f0: 0c000013 addi x0,x0,192 + 1f4: 0026 .2byte 0x26 + 1f6: 1349 .2byte 0x1349 + 1f8: 0000 .2byte 0x0 + 1fa: 2e0d .2byte 0x2e0d + 1fc: 0301 .2byte 0x301 + 1fe: 3a0e .2byte 0x3a0e + 200: 390b3b0b .4byte 0x390b3b0b + 204: 1113490b .4byte 0x1113490b + 208: 1201 .2byte 0x1201 + 20a: 4006 .2byte 0x4006 + 20c: 7a18 .2byte 0x7a18 + 20e: 0019 .2byte 0x19 + 210: 0e00 .2byte 0xe00 + 212: 0005 .2byte 0x5 + 214: 0b3a0803 lb x16,179(x20) + 218: 0b390b3b .4byte 0xb390b3b + 21c: 1349 .2byte 0x1349 + 21e: 1802 .2byte 0x1802 + 220: 0000 .2byte 0x0 + ... + +Disassembly of section .debug_line: + +00000000 <.debug_line>: + 0: 0082 .2byte 0x82 + 2: 0000 .2byte 0x0 + 4: 0005 .2byte 0x5 + 6: 0004 .2byte 0x4 + 8: 002a .2byte 0x2a + a: 0000 .2byte 0x0 + c: 0101 .2byte 0x101 + e: fb01 .2byte 0xfb01 + 10: 0d0e .2byte 0xd0e + 12: 0100 .2byte 0x100 + 14: 0101 .2byte 0x101 + 16: 0001 .2byte 0x1 + 18: 0000 .2byte 0x0 + 1a: 0001 .2byte 0x1 + 1c: 0100 .2byte 0x100 + 1e: 0101 .2byte 0x101 + 20: 011f 0000 0000 .byte 0x1f, 0x01, 0x00, 0x00, 0x00, 0x00 + 26: 0102 .2byte 0x102 + 28: 021f 020f 0018 .byte 0x1f, 0x02, 0x0f, 0x02, 0x18, 0x00 + 2e: 0000 .2byte 0x0 + 30: 1800 .2byte 0x1800 + 32: 0000 .2byte 0x0 + 34: 0000 .2byte 0x0 + 36: 0500 .2byte 0x500 + 38: 0002 .2byte 0x2 + 3a: 0000 .2byte 0x0 + 3c: 1a80 .2byte 0x1a80 + 3e: 08090303 lb x6,128(x18) # 17722e <_start-0x7fe88dd2> + 42: 0100 .2byte 0x100 + 44: 08090303 lb x6,128(x18) + 48: 0100 .2byte 0x100 + 4a: 08090103 lb x2,128(x18) + 4e: 0100 .2byte 0x100 + 50: 08090303 lb x6,128(x18) + 54: 0100 .2byte 0x100 + 56: 04090103 lb x2,64(x18) + 5a: 0100 .2byte 0x100 + 5c: 04090103 lb x2,64(x18) + 60: 0100 .2byte 0x100 + 62: 04090103 lb x2,64(x18) + 66: 0100 .2byte 0x100 + 68: 04090303 lb x6,64(x18) + 6c: 0100 .2byte 0x100 + 6e: 04090203 lb x4,64(x18) + 72: 0100 .2byte 0x100 + 74: 08090203 lb x4,128(x18) + 78: 0100 .2byte 0x100 + 7a: 04090303 lb x6,64(x18) + 7e: 0100 .2byte 0x100 + 80: 0409 .2byte 0x409 + 82: 0000 .2byte 0x0 + 84: 0101 .2byte 0x101 + 86: 0202 .2byte 0x202 + 88: 0000 .2byte 0x0 + 8a: 0005 .2byte 0x5 + 8c: 0004 .2byte 0x4 + 8e: 0038 .2byte 0x38 + 90: 0000 .2byte 0x0 + 92: 0101 .2byte 0x101 + 94: fb01 .2byte 0xfb01 + 96: 0d0e .2byte 0xd0e + 98: 0100 .2byte 0x100 + 9a: 0101 .2byte 0x101 + 9c: 0001 .2byte 0x1 + 9e: 0000 .2byte 0x0 + a0: 0001 .2byte 0x1 + a2: 0100 .2byte 0x100 + a4: 0101 .2byte 0x101 + a6: 021f 0000 0000 .byte 0x1f, 0x02, 0x00, 0x00, 0x00, 0x00 + ac: 002c .2byte 0x2c + ae: 0000 .2byte 0x0 + b0: 0102 .2byte 0x102 + b2: 021f 040f 0020 .byte 0x1f, 0x02, 0x0f, 0x04, 0x20, 0x00 + b8: 0000 .2byte 0x0 + ba: 2000 .2byte 0x2000 + bc: 0000 .2byte 0x0 + be: 0000 .2byte 0x0 + c0: 006e .2byte 0x6e + c2: 0000 .2byte 0x0 + c4: 7b01 .2byte 0x7b01 + c6: 0000 .2byte 0x0 + c8: 0100 .2byte 0x100 + ca: 0105 .2byte 0x105 + cc: 0500 .2byte 0x500 + ce: 4402 .2byte 0x4402 + d0: 0000 .2byte 0x0 + d2: 1880 .2byte 0x1880 + d4: 0c05 .2byte 0xc05 + d6: 10090103 lb x2,256(x18) + da: 0100 .2byte 0x100 + dc: 0605 .2byte 0x605 + de: 08090103 lb x2,128(x18) + e2: 0100 .2byte 0x100 + e4: 0705 .2byte 0x705 + e6: 04090103 lb x2,64(x18) + ea: 0100 .2byte 0x100 + ec: 0d05 .2byte 0xd05 + ee: 0c097f03 .4byte 0xc097f03 + f2: 0100 .2byte 0x100 + f4: 1005 .2byte 0x1005 + f6: 08090003 lb x0,128(x18) + fa: 0100 .2byte 0x100 + fc: 1105 .2byte 0x1105 + fe: 04090203 lb x4,64(x18) + 102: 0100 .2byte 0x100 + 104: 0105 .2byte 0x105 + 106: 0c090103 lb x2,192(x18) + 10a: 0100 .2byte 0x100 + 10c: 10090303 lb x6,256(x18) + 110: 0100 .2byte 0x100 + 112: 0605 .2byte 0x605 + 114: 14090103 lb x2,320(x18) + 118: 0100 .2byte 0x100 + 11a: 1605 .2byte 0x1605 + 11c: 0200 .2byte 0x200 + 11e: 0104 .2byte 0x104 + 120: 04090003 lb x0,64(x18) + 124: 0100 .2byte 0x100 + 126: 1405 .2byte 0x1405 + 128: 0200 .2byte 0x200 + 12a: 0104 .2byte 0x104 + 12c: 0c090003 lb x0,192(x18) + 130: 0100 .2byte 0x100 + 132: 0f05 .2byte 0xf05 + 134: 0200 .2byte 0x200 + 136: 0104 .2byte 0x104 + 138: 04090003 lb x0,64(x18) + 13c: 0100 .2byte 0x100 + 13e: 1205 .2byte 0x1205 + 140: 0200 .2byte 0x200 + 142: 0104 .2byte 0x104 + 144: 0c090003 lb x0,192(x18) + 148: 0100 .2byte 0x100 + 14a: 0d05 .2byte 0xd05 + 14c: 0200 .2byte 0x200 + 14e: 0104 .2byte 0x104 + 150: 04090003 lb x0,64(x18) + 154: 0100 .2byte 0x100 + 156: 1205 .2byte 0x1205 + 158: 0200 .2byte 0x200 + 15a: 0104 .2byte 0x104 + 15c: 04090003 lb x0,64(x18) + 160: 0100 .2byte 0x100 + 162: 0105 .2byte 0x105 + 164: 0c090103 lb x2,192(x18) + 168: 0100 .2byte 0x100 + 16a: 14090903 lb x18,320(x18) + 16e: 0100 .2byte 0x100 + 170: 0f05 .2byte 0xf05 + 172: 10090103 lb x2,256(x18) + 176: 0100 .2byte 0x100 + 178: 0505 .2byte 0x505 + 17a: 08090003 lb x0,128(x18) + 17e: 0100 .2byte 0x100 + 180: 1505 .2byte 0x1505 + 182: 04090103 lb x2,64(x18) + 186: 0100 .2byte 0x100 + 188: 1005 .2byte 0x1005 + 18a: 1c090003 lb x0,448(x18) + 18e: 0100 .2byte 0x100 + 190: 0b05 .2byte 0xb05 + 192: 08090003 lb x0,128(x18) + 196: 0100 .2byte 0x100 + 198: 1305 .2byte 0x1305 + 19a: 0c090403 lb x8,192(x18) + 19e: 0100 .2byte 0x100 + 1a0: 1f05 .2byte 0x1f05 + 1a2: 08090003 lb x0,128(x18) + 1a6: 0100 .2byte 0x100 + 1a8: 0605 .2byte 0x605 + 1aa: 0c090003 lb x0,192(x18) + 1ae: 0100 .2byte 0x100 + 1b0: 0d05 .2byte 0xd05 + 1b2: 08090103 lb x2,128(x18) + 1b6: 0100 .2byte 0x100 + 1b8: 1005 .2byte 0x1005 + 1ba: 08090003 lb x0,128(x18) + 1be: 0100 .2byte 0x100 + 1c0: 0d05 .2byte 0xd05 + 1c2: 04090003 lb x0,64(x18) + 1c6: 0100 .2byte 0x100 + 1c8: 1405 .2byte 0x1405 + 1ca: 0c090103 lb x2,192(x18) + 1ce: 0100 .2byte 0x100 + 1d0: 1605 .2byte 0x1605 + 1d2: 08090003 lb x0,128(x18) + 1d6: 0100 .2byte 0x100 + 1d8: 1405 .2byte 0x1405 + 1da: 04090003 lb x0,64(x18) + 1de: 0100 .2byte 0x100 + 1e0: 1605 .2byte 0x1605 + 1e2: 04090003 lb x0,64(x18) + 1e6: 0100 .2byte 0x100 + 1e8: 0d05 .2byte 0xd05 + 1ea: 08090203 lb x4,128(x18) + 1ee: 0100 .2byte 0x100 + 1f0: 0105 .2byte 0x105 + 1f2: 04090103 lb x2,64(x18) + 1f6: 0100 .2byte 0x100 + 1f8: 0d05 .2byte 0xd05 + 1fa: 10090203 lb x4,256(x18) + 1fe: 0100 .2byte 0x100 + 200: 1b05 .2byte 0x1b05 + 202: 14090203 lb x4,320(x18) + 206: 0100 .2byte 0x100 + 208: 1005 .2byte 0x1005 + 20a: 28090103 lb x2,640(x18) + 20e: 0100 .2byte 0x100 + 210: 0905 .2byte 0x905 + 212: 18090103 lb x2,384(x18) + 216: 0100 .2byte 0x100 + 218: 1b05 .2byte 0x1b05 + 21a: 04090203 lb x4,64(x18) + 21e: 0100 .2byte 0x100 + 220: 1005 .2byte 0x1005 + 222: 28090103 lb x2,640(x18) + 226: 0100 .2byte 0x100 + 228: 0905 .2byte 0x905 + 22a: 18090103 lb x2,384(x18) + 22e: 0100 .2byte 0x100 + 230: 3605 .2byte 0x3605 + 232: 04090703 lb x14,64(x18) + 236: 0100 .2byte 0x100 + 238: 1005 .2byte 0x1005 + 23a: 10090103 lb x2,256(x18) + 23e: 0100 .2byte 0x100 + 240: 0c090103 lb x2,192(x18) + 244: 0100 .2byte 0x100 + 246: 0905 .2byte 0x905 + 248: 0c090103 lb x2,192(x18) + 24c: 0100 .2byte 0x100 + 24e: 1b05 .2byte 0x1b05 + 250: 04090203 lb x4,64(x18) + 254: 0100 .2byte 0x100 + 256: 1f05 .2byte 0x1f05 + 258: 10090003 lb x0,256(x18) + 25c: 0100 .2byte 0x100 + 25e: 2705 .2byte 0x2705 + 260: 08090003 lb x0,128(x18) + 264: 0100 .2byte 0x100 + 266: 1f05 .2byte 0x1f05 + 268: 10090003 lb x0,256(x18) + 26c: 0100 .2byte 0x100 + 26e: 1205 .2byte 0x1205 + 270: 1c090003 lb x0,448(x18) + 274: 0100 .2byte 0x100 + 276: 0c05 .2byte 0xc05 + 278: 08090203 lb x4,128(x18) + 27c: 0100 .2byte 0x100 + 27e: 0105 .2byte 0x105 + 280: 04090103 lb x2,64(x18) + 284: 0100 .2byte 0x100 + 286: 1809 .2byte 0x1809 + 288: 0000 .2byte 0x0 + 28a: 0101 .2byte 0x101 + 28c: 01a1 .2byte 0x1a1 + 28e: 0000 .2byte 0x0 + 290: 0005 .2byte 0x5 + 292: 0004 .2byte 0x4 + 294: 003d .2byte 0x3d + 296: 0000 .2byte 0x0 + 298: 0101 .2byte 0x101 + 29a: fb01 .2byte 0xfb01 + 29c: 0d0e .2byte 0xd0e + 29e: 0100 .2byte 0x100 + 2a0: 0101 .2byte 0x101 + 2a2: 0001 .2byte 0x1 + 2a4: 0000 .2byte 0x0 + 2a6: 0001 .2byte 0x1 + 2a8: 0100 .2byte 0x100 + 2aa: 0101 .2byte 0x101 + 2ac: 021f 0000 0000 .byte 0x1f, 0x02, 0x00, 0x00, 0x00, 0x00 + 2b2: 002c .2byte 0x2c + 2b4: 0000 .2byte 0x0 + 2b6: 0102 .2byte 0x102 + 2b8: 021f 050f 0084 .byte 0x1f, 0x02, 0x0f, 0x05, 0x84, 0x00 + 2be: 0000 .2byte 0x0 + 2c0: 8400 .2byte 0x8400 + 2c2: 0000 .2byte 0x0 + 2c4: 0000 .2byte 0x0 + 2c6: 006e .2byte 0x6e + 2c8: 0000 .2byte 0x0 + 2ca: 8f01 .2byte 0x8f01 + 2cc: 0000 .2byte 0x0 + 2ce: 0000 .2byte 0x0 + 2d0: 0000007b .4byte 0x7b + 2d4: 0501 .2byte 0x501 + 2d6: 02050027 .4byte 0x2050027 + 2da: 02cc .2byte 0x2cc + 2dc: 8000 .2byte 0x8000 + 2de: 0515 .2byte 0x515 + 2e0: 0309 .2byte 0x309 + 2e2: 0901 .2byte 0x901 + 2e4: 0010 .2byte 0x10 + 2e6: 0501 .2byte 0x501 + 2e8: 0305 .2byte 0x305 + 2ea: 0901 .2byte 0x901 + 2ec: 0004 .2byte 0x4 + 2ee: 0501 .2byte 0x501 + 2f0: 0901030f .4byte 0x901030f + 2f4: 0004 .2byte 0x4 + 2f6: 0501 .2byte 0x501 + 2f8: 0310 .2byte 0x310 + 2fa: 097f 000c 0501 0316 .byte 0x7f, 0x09, 0x0c, 0x00, 0x01, 0x05, 0x16, 0x03, 0x00, 0x09 + 302: 0900 + 304: 0004 .2byte 0x4 + 306: 0501 .2byte 0x501 + 308: 0318 .2byte 0x318 + 30a: 0900 .2byte 0x900 + 30c: 000c .2byte 0xc + 30e: 0501 .2byte 0x501 + 310: 030c .2byte 0x30c + 312: 00040903 lb x18,0(x8) + 316: 0501 .2byte 0x501 + 318: 0301 .2byte 0x301 + 31a: 0901 .2byte 0x901 + 31c: 0004 .2byte 0x4 + 31e: 0501 .2byte 0x501 + 320: 0902034f .4byte 0x902034f + 324: 0010 .2byte 0x10 + 326: 0501 .2byte 0x501 + 328: 09020323 sb x16,134(x4) # 86 <_start-0x7fffff7a> + 32c: 001c .2byte 0x1c + 32e: 0501 .2byte 0x501 + 330: 030e .2byte 0x30e + 332: 0902 .2byte 0x902 + 334: 0010 .2byte 0x10 + 336: 0501 .2byte 0x501 + 338: 0305 .2byte 0x305 + 33a: 0900 .2byte 0x900 + 33c: 0004 .2byte 0x4 + 33e: 0501 .2byte 0x501 + 340: 0402000f .4byte 0x402000f + 344: 09010303 lb x6,144(x2) # 12011094 <_start-0x6dfeef6c> + 348: 0004 .2byte 0x4 + 34a: 0501 .2byte 0x501 + 34c: 0010 .2byte 0x10 + 34e: 0402 .2byte 0x402 + 350: 09000303 lb x6,144(x0) # 90 <_start-0x7fffff70> + 354: 0004 .2byte 0x4 + 356: 0501 .2byte 0x501 + 358: 0012 .2byte 0x12 + 35a: 0402 .2byte 0x402 + 35c: 09000303 lb x6,144(x0) # 90 <_start-0x7fffff70> + 360: 0008 .2byte 0x8 + 362: 0501 .2byte 0x501 + 364: 0005 .2byte 0x5 + 366: 0402 .2byte 0x402 + 368: 097f0303 lb x6,151(x30) + 36c: 0004 .2byte 0x4 + 36e: 0501 .2byte 0x501 + 370: 04020017 auipc x0,0x4020 + 374: 0301 .2byte 0x301 + 376: 0900 .2byte 0x900 + 378: 000c .2byte 0xc + 37a: 0501 .2byte 0x501 + 37c: 030e .2byte 0x30e + 37e: 0904 .2byte 0x904 + 380: 000c .2byte 0xc + 382: 0501 .2byte 0x501 + 384: 0305 .2byte 0x305 + 386: 0900 .2byte 0x900 + 388: 0004 .2byte 0x4 + 38a: 0501 .2byte 0x501 + 38c: 0312 .2byte 0x312 + 38e: 0901 .2byte 0x901 + 390: 0004 .2byte 0x4 + 392: 0501 .2byte 0x501 + 394: 0309 .2byte 0x309 + 396: 0900 .2byte 0x900 + 398: 0004 .2byte 0x4 + 39a: 0501 .2byte 0x501 + 39c: 0319 .2byte 0x319 + 39e: 0901 .2byte 0x901 + 3a0: 0004 .2byte 0x4 + 3a2: 0501 .2byte 0x501 + 3a4: 031a .2byte 0x31a + 3a6: 0900 .2byte 0x900 + 3a8: 0004 .2byte 0x4 + 3aa: 0501 .2byte 0x501 + 3ac: 0325 .2byte 0x325 + 3ae: 0900 .2byte 0x900 + 3b0: 000c .2byte 0xc + 3b2: 0501 .2byte 0x501 + 3b4: 0326 .2byte 0x326 + 3b6: 0900 .2byte 0x900 + 3b8: 0004 .2byte 0x4 + 3ba: 0501 .2byte 0x501 + 3bc: 030d .2byte 0x30d + 3be: 0900 .2byte 0x900 + 3c0: 000c .2byte 0xc + 3c2: 0501 .2byte 0x501 + 3c4: 09010317 auipc x6,0x9010 + 3c8: 0004 .2byte 0x4 + 3ca: 0501 .2byte 0x501 + 3cc: 0318 .2byte 0x318 + 3ce: 0900 .2byte 0x900 + 3d0: 0004 .2byte 0x4 + 3d2: 0501 .2byte 0x501 + 3d4: 0319 .2byte 0x319 + 3d6: 0900 .2byte 0x900 + 3d8: 000c .2byte 0xc + 3da: 0501 .2byte 0x501 + 3dc: 0009 .2byte 0x9 + 3de: 0402 .2byte 0x402 + 3e0: 0302 .2byte 0x302 + 3e2: 097e .2byte 0x97e + 3e4: 000c .2byte 0xc + 3e6: 0501 .2byte 0x501 + 3e8: 001f 0402 0301 .byte 0x1f, 0x00, 0x02, 0x04, 0x01, 0x03 + 3ee: 0900 .2byte 0x900 + 3f0: 000c .2byte 0xc + 3f2: 0501 .2byte 0x501 + 3f4: 0020 .2byte 0x20 + 3f6: 0402 .2byte 0x402 + 3f8: 0301 .2byte 0x301 + 3fa: 0900 .2byte 0x900 + 3fc: 0004 .2byte 0x4 + 3fe: 0501 .2byte 0x501 + 400: 0022 .2byte 0x22 + 402: 0402 .2byte 0x402 + 404: 0301 .2byte 0x301 + 406: 0900 .2byte 0x900 + 408: 000c .2byte 0xc + 40a: 0501 .2byte 0x501 + 40c: 0005 .2byte 0x5 + 40e: 0402 .2byte 0x402 + 410: 0302 .2byte 0x302 + 412: 097f 0004 0501 0017 .byte 0x7f, 0x09, 0x04, 0x00, 0x01, 0x05, 0x17, 0x00, 0x02, 0x04 + 41a: 0402 + 41c: 0301 .2byte 0x301 + 41e: 0900 .2byte 0x900 + 420: 000c .2byte 0xc + 422: 0501 .2byte 0x501 + 424: 0301 .2byte 0x301 + 426: 000c0907 .4byte 0xc0907 + 42a: 0901 .2byte 0x901 + 42c: 0018 .2byte 0x18 + 42e: 0100 .2byte 0x100 + 430: 01 Address 0x430 is out of bounds. + + +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: 2f70 .2byte 0x2f70 + 1c: 00707063 bgeu x0,x7,1c <_start-0x7fffffe4> + 20: 20554e47 .4byte 0x20554e47 + 24: 5341 .2byte 0x5341 + 26: 3220 .2byte 0x3220 + 28: 342e .2byte 0x342e + 2a: 2e30 .2byte 0x2e30 + 2c: 0030 .2byte 0x30 + 2e: 5f5f 5845 4543 .byte 0x5f, 0x5f, 0x45, 0x58, 0x43, 0x45 + 34: 5450 .2byte 0x5450 + 36: 4f49 .2byte 0x4f49 + 38: 534e .2byte 0x534e + 3a: 3120 .2byte 0x3120 + 3c: 5f00 .2byte 0x5f00 + 3e: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 + 44: 485f 5341 515f .byte 0x5f, 0x48, 0x41, 0x53, 0x5f, 0x51 + 4a: 4955 .2byte 0x4955 + 4c: 5445 .2byte 0x5445 + 4e: 4e5f 4e41 5f5f .byte 0x5f, 0x4e, 0x41, 0x4e, 0x5f, 0x5f + 54: 3120 .2byte 0x3120 + 56: 5f00 .2byte 0x5f00 + 58: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 + 5e: 485f 5341 495f .byte 0x5f, 0x48, 0x41, 0x53, 0x5f, 0x49 + 64: 464e .2byte 0x464e + 66: 4e49 .2byte 0x4e49 + 68: 5449 .2byte 0x5449 + 6a: 5f59 .2byte 0x5f59 + 6c: 205f 0031 4955 .byte 0x5f, 0x20, 0x31, 0x00, 0x55, 0x49 + 72: 544e .2byte 0x544e + 74: 5f38 .2byte 0x5f38 + 76: 414d .2byte 0x414d + 78: 0058 .2byte 0x58 + 7a: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 + 80: 465f 5341 3854 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x38 + 86: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f + 8c: 205f 6e75 6973 .byte 0x5f, 0x20, 0x75, 0x6e, 0x73, 0x69 + 92: 64656e67 .4byte 0x64656e67 + 96: 6920 .2byte 0x6920 + 98: 746e .2byte 0x746e + 9a: 5f00 .2byte 0x5f00 + 9c: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 + a2: 4d5f 5841 455f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x45 + a8: 5058 .2byte 0x5058 + aa: 5f5f 3120 3230 .byte 0x5f, 0x5f, 0x20, 0x31, 0x30, 0x32 + b0: 0034 .2byte 0x34 + b2: 5f5f 4c46 5f54 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x5f + b8: 494d .2byte 0x494d + ba: 5f4e .2byte 0x5f4e + bc: 3031 .2byte 0x3031 + be: 455f 5058 5f5f .byte 0x5f, 0x45, 0x58, 0x50, 0x5f, 0x5f + c4: 2820 .2byte 0x2820 + c6: 332d .2byte 0x332d + c8: 5f002937 lui x18,0x5f002 + cc: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 + d2: 5f58 .2byte 0x5f58 + d4: 4544 .2byte 0x4544 + d6: 4f4e .2byte 0x4f4e + d8: 4d52 .2byte 0x4d52 + da: 4d5f 4e49 5f5f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x5f + e0: 3620 .2byte 0x3620 + e2: 342e .2byte 0x342e + e4: 37313537 lui x10,0x37313 + e8: 3135 .2byte 0x3135 + ea: 3931 .2byte 0x3931 + ec: 3334 .2byte 0x3334 + ee: 3038 .2byte 0x3038 + f0: 3532 .2byte 0x3532 + f2: 3131 .2byte 0x3131 + f4: 3930 .2byte 0x3930 + f6: 3432 .2byte 0x3432 + f8: 3334 .2byte 0x3334 + fa: 3938 .2byte 0x3938 + fc: 3835 .2byte 0x3835 + fe: 3232 .2byte 0x3232 + 100: 36343637 lui x12,0x36343 + 104: 3535 .2byte 0x3535 + 106: 2d65 .2byte 0x2d65 + 108: 3934 .2byte 0x3934 + 10a: 3636 .2byte 0x3636 + 10c: 3646 .2byte 0x3646 + 10e: 7834 .2byte 0x7834 + 110: 5f00 .2byte 0x5f00 + 112: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 + 118: 5f58 .2byte 0x5f58 + 11a: 414d .2byte 0x414d + 11c: 5f58 .2byte 0x5f58 + 11e: 5845 .2byte 0x5845 + 120: 5f50 .2byte 0x5f50 + 122: 205f 3031 3432 .byte 0x5f, 0x20, 0x31, 0x30, 0x32, 0x34 + 128: 5f00 .2byte 0x5f00 + 12a: 495f 544e 465f .byte 0x5f, 0x49, 0x4e, 0x54, 0x5f, 0x46 + 130: 5341 .2byte 0x5341 + 132: 3154 .2byte 0x3154 + 134: 5f36 .2byte 0x5f36 + 136: 54444957 .4byte 0x54444957 + 13a: 5f48 .2byte 0x5f48 + 13c: 205f 3233 5f00 .byte 0x5f, 0x20, 0x33, 0x32, 0x00, 0x5f + 142: 555f 4e49 3354 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x33 + 148: 5f32 .2byte 0x5f32 + 14a: 29632843 .4byte 0x29632843 + 14e: 6320 .2byte 0x6320 + 150: 2320 .2byte 0x2320 + 152: 4c552023 sw x5,1216(x10) # 373134c0 <_start-0x48cecb40> + 156: 4900 .2byte 0x4900 + 158: 544e .2byte 0x544e + 15a: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 + 160: 3631 .2byte 0x3631 + 162: 4d5f 4e49 5f00 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x00, 0x5f + 168: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 + 16e: 5f58 .2byte 0x5f58 + 170: 5045 .2byte 0x5045 + 172: 4f4c4953 .4byte 0x4f4c4953 + 176: 5f4e .2byte 0x5f4e + 178: 205f 2e31 3239 .byte 0x5f, 0x20, 0x31, 0x2e, 0x39, 0x32 + 17e: 3935 .2byte 0x3935 + 180: 3932 .2byte 0x3932 + 182: 3439 .2byte 0x3439 + 184: 3334 .2byte 0x3334 + 186: 3738 .2byte 0x3738 + 188: 3332 .2byte 0x3332 + 18a: 3835 .2byte 0x3835 + 18c: 3335 .2byte 0x3335 + 18e: 3530 .2byte 0x3530 + 190: 3935 .2byte 0x3935 + 192: 34393737 lui x14,0x34393 + 196: 3532 .2byte 0x3532 + 198: 3438 .2byte 0x3438 + 19a: 3239 .2byte 0x3239 + 19c: 65323337 lui x6,0x65323 + 1a0: 332d .2byte 0x332d + 1a2: 4634 .2byte 0x4634 + 1a4: 3436 .2byte 0x3436 + 1a6: 0078 .2byte 0x78 + 1a8: 4e49 .2byte 0x4e49 + 1aa: 5f54 .2byte 0x5f54 + 1ac: 454c .2byte 0x454c + 1ae: 5341 .2byte 0x5341 + 1b0: 3154 .2byte 0x3154 + 1b2: 5f36 .2byte 0x5f36 + 1b4: 414d .2byte 0x414d + 1b6: 2058 .2byte 0x2058 + 1b8: 5f5f 4e49 5f54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x5f + 1be: 454c .2byte 0x454c + 1c0: 5341 .2byte 0x5341 + 1c2: 3154 .2byte 0x3154 + 1c4: 5f36 .2byte 0x5f36 + 1c6: 414d .2byte 0x414d + 1c8: 5f58 .2byte 0x5f58 + 1ca: 005f 5f5f 4c46 .byte 0x5f, 0x00, 0x5f, 0x5f, 0x46, 0x4c + 1d0: 3354 .2byte 0x3354 + 1d2: 5f32 .2byte 0x5f32 + 1d4: 414d .2byte 0x414d + 1d6: 544e .2byte 0x544e + 1d8: 445f 4749 5f5f .byte 0x5f, 0x44, 0x49, 0x47, 0x5f, 0x5f + 1de: 3220 .2byte 0x3220 + 1e0: 0034 .2byte 0x34 + 1e2: 5f5f 4c46 3154 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x31 + 1e8: 3832 .2byte 0x3832 + 1ea: 4d5f 4e41 5f54 .byte 0x5f, 0x4d, 0x41, 0x4e, 0x54, 0x5f + 1f0: 4944 .2byte 0x4944 + 1f2: 205f5f47 .4byte 0x205f5f47 + 1f6: 3131 .2byte 0x3131 + 1f8: 5f5f0033 .4byte 0x5f5f0033 + 1fc: 444c .2byte 0x444c + 1fe: 4c42 .2byte 0x4c42 + 200: 4d5f 4e41 5f54 .byte 0x5f, 0x4d, 0x41, 0x4e, 0x54, 0x5f + 206: 4944 .2byte 0x4944 + 208: 205f5f47 .4byte 0x205f5f47 + 20c: 3131 .2byte 0x3131 + 20e: 4e490033 .4byte 0x4e490033 + 212: 3154 .2byte 0x3154 + 214: 5f36 .2byte 0x5f36 + 216: 29632843 .4byte 0x29632843 + 21a: 5f20 .2byte 0x5f20 + 21c: 495f 544e 3631 .byte 0x5f, 0x49, 0x4e, 0x54, 0x31, 0x36 + 222: 435f 6328 0029 .byte 0x5f, 0x43, 0x28, 0x63, 0x29, 0x00 + 228: 5f5f 4c46 3354 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x33 + 22e: 5832 .2byte 0x5832 + 230: 445f 4345 4d49 .byte 0x5f, 0x44, 0x45, 0x43, 0x49, 0x4d + 236: 4c41 .2byte 0x4c41 + 238: 445f 4749 5f5f .byte 0x5f, 0x44, 0x49, 0x47, 0x5f, 0x5f + 23e: 3120 .2byte 0x3120 + 240: 5f5f0037 lui x0,0x5f5f0 + 244: 6972 .2byte 0x6972 + 246: 5f766373 .4byte 0x5f766373 + 24a: 646f6d63 bltu x30,x6,8a4 <_start-0x7ffff75c> + 24e: 6c65 .2byte 0x6c65 + 250: 6d5f 6465 6f6c .byte 0x5f, 0x6d, 0x65, 0x64, 0x6c, 0x6f + 256: 00312077 .4byte 0x312077 + 25a: 5f5f 4244 5f4c .byte 0x5f, 0x5f, 0x44, 0x42, 0x4c, 0x5f + 260: 494d .2byte 0x494d + 262: 5f4e .2byte 0x5f4e + 264: 5845 .2byte 0x5845 + 266: 5f50 .2byte 0x5f50 + 268: 205f 2d28 3031 .byte 0x5f, 0x20, 0x28, 0x2d, 0x31, 0x30 + 26e: 3132 .2byte 0x3132 + 270: 0029 .2byte 0x29 + 272: 5f5f 4f4c 474e .byte 0x5f, 0x5f, 0x4c, 0x4f, 0x4e, 0x47 + 278: 4c5f 4e4f 5f47 .byte 0x5f, 0x4c, 0x4f, 0x4e, 0x47, 0x5f + 27e: 54444957 .4byte 0x54444957 + 282: 5f48 .2byte 0x5f48 + 284: 205f 3436 5f00 .byte 0x5f, 0x20, 0x36, 0x34, 0x00, 0x5f + 28a: 475f 4343 415f .byte 0x5f, 0x47, 0x43, 0x43, 0x5f, 0x41 + 290: 4f54 .2byte 0x4f54 + 292: 494d .2byte 0x494d + 294: 48435f43 .4byte 0x48435f43 + 298: 5241 .2byte 0x5241 + 29a: 3631 .2byte 0x3631 + 29c: 545f 4c5f 434f .byte 0x5f, 0x54, 0x5f, 0x4c, 0x4f, 0x43 + 2a2: 52465f4b .4byte 0x52465f4b + 2a6: 4545 .2byte 0x4545 + 2a8: 3120 .2byte 0x3120 + 2aa: 5f00 .2byte 0x5f00 + 2ac: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 + 2b2: 5f58 .2byte 0x5f58 + 2b4: 414d .2byte 0x414d + 2b6: 5f58 .2byte 0x5f58 + 2b8: 205f 2e31 3937 .byte 0x5f, 0x20, 0x31, 0x2e, 0x37, 0x39 + 2be: 33393637 lui x12,0x33393 + 2c2: 3331 .2byte 0x3331 + 2c4: 3834 .2byte 0x3834 + 2c6: 3236 .2byte 0x3236 + 2c8: 37353133 .4byte 0x37353133 + 2cc: 3830 .2byte 0x3830 + 2ce: 3431 .2byte 0x3431 + 2d0: 3235 .2byte 0x3235 + 2d2: 33323437 lui x8,0x33323 + 2d6: 37313337 lui x6,0x37313 + 2da: 3430 .2byte 0x3430 + 2dc: 65373533 .4byte 0x65373533 + 2e0: 3830332b .4byte 0x3830332b + 2e4: 3346 .2byte 0x3346 + 2e6: 7832 .2byte 0x7832 + 2e8: 5f00 .2byte 0x5f00 + 2ea: 465f 544c 3231 .byte 0x5f, 0x46, 0x4c, 0x54, 0x31, 0x32 + 2f0: 5f38 .2byte 0x5f38 + 2f2: 414d .2byte 0x414d + 2f4: 5f58 .2byte 0x5f58 + 2f6: 205f 2e31 3831 .byte 0x5f, 0x20, 0x31, 0x2e, 0x31, 0x38 + 2fc: 3739 .2byte 0x3739 + 2fe: 39343133 .4byte 0x39343133 + 302: 3335 .2byte 0x3335 + 304: 3735 .2byte 0x3735 + 306: 3332 .2byte 0x3332 + 308: 3731 .2byte 0x3731 + 30a: 3536 .2byte 0x3536 + 30c: 3830 .2byte 0x3830 + 30e: 3735 .2byte 0x3735 + 310: 3935 .2byte 0x3935 + 312: 36363233 .4byte 0x36363233 + 316: 3832 .2byte 0x3832 + 318: 3030 .2byte 0x3030 + 31a: 65323037 lui x0,0x65323 + 31e: 3339342b .4byte 0x3339342b + 322: 4632 .2byte 0x4632 + 324: 3231 .2byte 0x3231 + 326: 0038 .2byte 0x38 + 328: 5f5f 4953 455a .byte 0x5f, 0x5f, 0x53, 0x49, 0x5a, 0x45 + 32e: 575f464f .4byte 0x575f464f + 332: 4e49 .2byte 0x4e49 + 334: 5f54 .2byte 0x5f54 + 336: 5f54 .2byte 0x5f54 + 338: 205f 0034 4955 .byte 0x5f, 0x20, 0x34, 0x00, 0x55, 0x49 + 33e: 544e .2byte 0x544e + 340: 3631 .2byte 0x3631 + 342: 435f 6328 2029 .byte 0x5f, 0x43, 0x28, 0x63, 0x29, 0x20 + 348: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 + 34e: 3631 .2byte 0x3631 + 350: 435f 6328 0029 .byte 0x5f, 0x43, 0x28, 0x63, 0x29, 0x00 + 356: 4e49 .2byte 0x4e49 + 358: 5f54 .2byte 0x5f54 + 35a: 4146 .2byte 0x4146 + 35c: 36315453 .4byte 0x36315453 + 360: 4d5f 5841 5f20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x5f + 366: 495f 544e 465f .byte 0x5f, 0x49, 0x4e, 0x54, 0x5f, 0x46 + 36c: 5341 .2byte 0x5341 + 36e: 3154 .2byte 0x3154 + 370: 5f36 .2byte 0x5f36 + 372: 414d .2byte 0x414d + 374: 5f58 .2byte 0x5f58 + 376: 005f 5f5f 4e47 .byte 0x5f, 0x00, 0x5f, 0x5f, 0x47, 0x4e + 37c: 4355 .2byte 0x4355 + 37e: 4d5f 4e49 524f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x4f, 0x52 + 384: 5f5f 3220 5f00 .byte 0x5f, 0x5f, 0x20, 0x32, 0x00, 0x5f + 38a: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 + 390: 4e5f 524f 5f4d .byte 0x5f, 0x4e, 0x4f, 0x52, 0x4d, 0x5f + 396: 414d .2byte 0x414d + 398: 5f58 .2byte 0x5f58 + 39a: 205f 2e33 3034 .byte 0x5f, 0x20, 0x33, 0x2e, 0x34, 0x30 + 3a0: 3832 .2byte 0x3832 + 3a2: 3332 .2byte 0x3332 + 3a4: 3634 .2byte 0x3634 + 3a6: 3336 .2byte 0x3336 + 3a8: 3538 .2byte 0x3538 + 3aa: 3832 .2byte 0x3832 + 3ac: 3538 .2byte 0x3538 + 3ae: 3839 .2byte 0x3839 + 3b0: 3131 .2byte 0x3131 + 3b2: 31343037 lui x0,0x31343 + 3b6: 3338 .2byte 0x3338 + 3b8: 3834 .2byte 0x3834 + 3ba: 3534 .2byte 0x3534 + 3bc: 3631 .2byte 0x3631 + 3be: 3239 .2byte 0x3239 + 3c0: 6535 .2byte 0x6535 + 3c2: 4638332b .4byte 0x4638332b + 3c6: 55003233 .4byte 0x55003233 + 3ca: 4e49 .2byte 0x4e49 + 3cc: 3154 .2byte 0x3154 + 3ce: 5f36 .2byte 0x5f36 + 3d0: 414d .2byte 0x414d + 3d2: 0058 .2byte 0x58 + 3d4: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f + 3da: 6568 .2byte 0x6568 + 3dc: 5f78 .2byte 0x5f78 + 3de: 6c66 .2byte 0x6c66 + 3e0: 2074616f jal x2,46de6 <_start-0x7ffb921a> + 3e4: 3032 .2byte 0x3032 + 3e6: 3631 .2byte 0x3631 + 3e8: 3330 .2byte 0x3330 + 3ea: 004c .2byte 0x4c + 3ec: 4955 .2byte 0x4955 + 3ee: 544e .2byte 0x544e + 3f0: 414d .2byte 0x414d + 3f2: 5f58 .2byte 0x5f58 + 3f4: 414d .2byte 0x414d + 3f6: 2058 .2byte 0x2058 + 3f8: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 + 3fe: 414d .2byte 0x414d + 400: 5f58 .2byte 0x5f58 + 402: 414d .2byte 0x414d + 404: 5f58 .2byte 0x5f58 + 406: 005f 5f5f 4c46 .byte 0x5f, 0x00, 0x5f, 0x5f, 0x46, 0x4c + 40c: 3654 .2byte 0x3654 + 40e: 5f34 .2byte 0x5f34 + 410: 494d .2byte 0x494d + 412: 5f4e .2byte 0x5f4e + 414: 205f 2e32 3232 .byte 0x5f, 0x20, 0x32, 0x2e, 0x32, 0x32 + 41a: 3035 .2byte 0x3035 + 41c: 35383337 lui x6,0x35383 + 420: 3538 .2byte 0x3538 + 422: 3730 .2byte 0x3730 + 424: 3032 .2byte 0x3032 + 426: 3331 .2byte 0x3331 + 428: 3338 .2byte 0x3338 + 42a: 3930 .2byte 0x3930 + 42c: 3230 .2byte 0x3230 + 42e: 31373233 .4byte 0x31373233 + 432: 32333337 lui x6,0x32333 + 436: 3034 .2byte 0x3034 + 438: 3034 .2byte 0x3034 + 43a: 6536 .2byte 0x6536 + 43c: 332d .2byte 0x332d + 43e: 3830 .2byte 0x3830 + 440: 3646 .2byte 0x3646 + 442: 0034 .2byte 0x34 + 444: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 + 44a: 3631 .2byte 0x3631 + 44c: 435f 6328 2029 .byte 0x5f, 0x43, 0x28, 0x63, 0x29, 0x20 + 452: 5f5f0063 beq x30,x21,a32 <_start-0x7ffff5ce> + 456: 4c46 .2byte 0x4c46 + 458: 5f54 .2byte 0x5f54 + 45a: 4544 .2byte 0x4544 + 45c: 4f4e .2byte 0x4f4e + 45e: 4d52 .2byte 0x4d52 + 460: 4d5f 4e49 5f5f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x5f + 466: 3120 .2byte 0x3120 + 468: 342e .2byte 0x342e + 46a: 3130 .2byte 0x3130 + 46c: 3932 .2byte 0x3932 + 46e: 3438 .2byte 0x3438 + 470: 3436 .2byte 0x3436 + 472: 38343233 .4byte 0x38343233 + 476: 3731 .2byte 0x3731 + 478: 3730 .2byte 0x3730 + 47a: 3930 .2byte 0x3930 + 47c: 3332 .2byte 0x3332 + 47e: 35393237 lui x4,0x35393 + 482: 3338 .2byte 0x3338 + 484: 3832 .2byte 0x3832 + 486: 3939 .2byte 0x3939 + 488: 3631 .2byte 0x3631 + 48a: 3331 .2byte 0x3331 + 48c: 2d65 .2byte 0x2d65 + 48e: 3534 .2byte 0x3534 + 490: 0046 .2byte 0x46 + 492: 5f5f 4843 5241 .byte 0x5f, 0x5f, 0x43, 0x48, 0x41, 0x52 + 498: 3631 .2byte 0x3631 + 49a: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f + 4a0: 205f 6873 726f .byte 0x5f, 0x20, 0x73, 0x68, 0x6f, 0x72 + 4a6: 2074 .2byte 0x2074 + 4a8: 6e75 .2byte 0x6e75 + 4aa: 6e676973 .4byte 0x6e676973 + 4ae: 6465 .2byte 0x6465 + 4b0: 6920 .2byte 0x6920 + 4b2: 746e .2byte 0x746e + 4b4: 5500 .2byte 0x5500 + 4b6: 4e49 .2byte 0x4e49 + 4b8: 5f54 .2byte 0x5f54 + 4ba: 454c .2byte 0x454c + 4bc: 5341 .2byte 0x5341 + 4be: 3354 .2byte 0x3354 + 4c0: 5f32 .2byte 0x5f32 + 4c2: 414d .2byte 0x414d + 4c4: 2058 .2byte 0x2058 + 4c6: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 + 4cc: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 + 4d2: 4d5f3233 .4byte 0x4d5f3233 + 4d6: 5841 .2byte 0x5841 + 4d8: 5f5f 5f00 635f .byte 0x5f, 0x5f, 0x00, 0x5f, 0x5f, 0x63 + 4de: 7070 .2byte 0x7070 + 4e0: 615f 7474 6972 .byte 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69 + 4e6: 7562 .2byte 0x7562 + 4e8: 6574 .2byte 0x6574 + 4ea: 30322073 .4byte 0x30322073 + 4ee: 3830 .2byte 0x3830 + 4f0: 3930 .2byte 0x3930 + 4f2: 004c .2byte 0x4c + 4f4: 4955 .2byte 0x4955 + 4f6: 544e .2byte 0x544e + 4f8: 5f38 .2byte 0x5f38 + 4fa: 414d .2byte 0x414d + 4fc: 2058 .2byte 0x2058 + 4fe: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 + 504: 5f38 .2byte 0x5f38 + 506: 414d .2byte 0x414d + 508: 5f58 .2byte 0x5f58 + 50a: 005f 5f5f 4e49 .byte 0x5f, 0x00, 0x5f, 0x5f, 0x49, 0x4e + 510: 5f54 .2byte 0x5f54 + 512: 4146 .2byte 0x4146 + 514: 5f385453 .4byte 0x5f385453 + 518: 414d .2byte 0x414d + 51a: 5f58 .2byte 0x5f58 + 51c: 205f 7830 6637 .byte 0x5f, 0x20, 0x30, 0x78, 0x37, 0x66 + 522: 6666 .2byte 0x6666 + 524: 6666 .2byte 0x6666 + 526: 6666 .2byte 0x6666 + 528: 5f00 .2byte 0x5f00 + 52a: 4f5f 4452 5245 .byte 0x5f, 0x4f, 0x52, 0x44, 0x45, 0x52 + 530: 425f 4749 455f .byte 0x5f, 0x42, 0x49, 0x47, 0x5f, 0x45 + 536: 444e .2byte 0x444e + 538: 4149 .2byte 0x4149 + 53a: 5f4e .2byte 0x5f4e + 53c: 205f 3334 3132 .byte 0x5f, 0x20, 0x34, 0x33, 0x32, 0x31 + 542: 5f00 .2byte 0x5f00 + 544: 505f 5254 4944 .byte 0x5f, 0x50, 0x54, 0x52, 0x44, 0x49 + 54a: 4646 .2byte 0x4646 + 54c: 575f 4449 4854 .byte 0x5f, 0x57, 0x49, 0x44, 0x54, 0x48 + 552: 5f5f 3320 0032 .byte 0x5f, 0x5f, 0x20, 0x33, 0x32, 0x00 + 558: 5f5f 4244 5f4c .byte 0x5f, 0x5f, 0x44, 0x42, 0x4c, 0x5f + 55e: 414d .2byte 0x414d + 560: 544e .2byte 0x544e + 562: 445f 4749 5f5f .byte 0x5f, 0x44, 0x49, 0x47, 0x5f, 0x5f + 568: 3520 .2byte 0x3520 + 56a: 5f5f0033 .4byte 0x5f5f0033 + 56e: 4955 .2byte 0x4955 + 570: 544e .2byte 0x544e + 572: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 + 578: 3436 .2byte 0x3436 + 57a: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f + 580: 205f 6f6c 676e .byte 0x5f, 0x20, 0x6c, 0x6f, 0x6e, 0x67 + 586: 6c20 .2byte 0x6c20 + 588: 20676e6f jal x28,7678e <_start-0x7ff89872> + 58c: 6e75 .2byte 0x6e75 + 58e: 6e676973 .4byte 0x6e676973 + 592: 6465 .2byte 0x6465 + 594: 6920 .2byte 0x6920 + 596: 746e .2byte 0x746e + 598: 5f00 .2byte 0x5f00 + 59a: 635f 7070 645f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x64 + 5a0: 6769 .2byte 0x6769 + 5a2: 7469 .2byte 0x7469 + 5a4: 735f 7065 7261 .byte 0x5f, 0x73, 0x65, 0x70, 0x61, 0x72 + 5aa: 7461 .2byte 0x7461 + 5ac: 2073726f jal x4,37fb2 <_start-0x7ffc804e> + 5b0: 3032 .2byte 0x3032 + 5b2: 3331 .2byte 0x3331 + 5b4: 3930 .2byte 0x3930 + 5b6: 004c .2byte 0x4c + 5b8: 5f5f 4e49 5f54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x5f + 5be: 414d .2byte 0x414d + 5c0: 5f58 .2byte 0x5f58 + 5c2: 205f 7830 6637 .byte 0x5f, 0x20, 0x30, 0x78, 0x37, 0x66 + 5c8: 6666 .2byte 0x6666 + 5ca: 6666 .2byte 0x6666 + 5cc: 6666 .2byte 0x6666 + 5ce: 5f00 .2byte 0x5f00 + 5d0: 415f 4f54 494d .byte 0x5f, 0x41, 0x54, 0x4f, 0x4d, 0x49 + 5d6: 45525f43 .4byte 0x45525f43 + 5da: 454c .2byte 0x454c + 5dc: 5341 .2byte 0x5341 + 5de: 2045 .2byte 0x2045 + 5e0: 5f5f0033 .4byte 0x5f5f0033 + 5e4: 4c46 .2byte 0x4c46 + 5e6: 5f54 .2byte 0x5f54 + 5e8: 5349 .2byte 0x5349 + 5ea: 495f 4345 365f .byte 0x5f, 0x49, 0x45, 0x43, 0x5f, 0x36 + 5f0: 3530 .2byte 0x3530 + 5f2: 3935 .2byte 0x3935 + 5f4: 5f5f 3220 5f00 .byte 0x5f, 0x5f, 0x20, 0x32, 0x00, 0x5f + 5fa: 505f 5254 4944 .byte 0x5f, 0x50, 0x54, 0x52, 0x44, 0x49 + 600: 4646 .2byte 0x4646 + 602: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f + 608: 205f 6e69 0074 .byte 0x5f, 0x20, 0x69, 0x6e, 0x74, 0x00 + 60e: 5f5f 4843 5241 .byte 0x5f, 0x5f, 0x43, 0x48, 0x41, 0x52 + 614: 555f 534e 4749 .byte 0x5f, 0x55, 0x4e, 0x53, 0x49, 0x47 + 61a: 454e .2byte 0x454e + 61c: 5f44 .2byte 0x5f44 + 61e: 205f 0031 5f5f .byte 0x5f, 0x20, 0x31, 0x00, 0x5f, 0x5f + 624: 4e49 .2byte 0x4e49 + 626: 3154 .2byte 0x3154 + 628: 5f36 .2byte 0x5f36 + 62a: 5954 .2byte 0x5954 + 62c: 4550 .2byte 0x4550 + 62e: 5f5f 7320 6f68 .byte 0x5f, 0x5f, 0x20, 0x73, 0x68, 0x6f + 634: 7472 .2byte 0x7472 + 636: 6920 .2byte 0x6920 + 638: 746e .2byte 0x746e + 63a: 5f00 .2byte 0x5f00 + 63c: 475f 4343 415f .byte 0x5f, 0x47, 0x43, 0x43, 0x5f, 0x41 + 642: 4f54 .2byte 0x4f54 + 644: 494d .2byte 0x494d + 646: 48435f43 .4byte 0x48435f43 + 64a: 5241 .2byte 0x5241 + 64c: 4c5f 434f 5f4b .byte 0x5f, 0x4c, 0x4f, 0x43, 0x4b, 0x5f + 652: 5246 .2byte 0x5246 + 654: 4545 .2byte 0x4545 + 656: 3120 .2byte 0x3120 + 658: 4900 .2byte 0x4900 + 65a: 544e .2byte 0x544e + 65c: 414d .2byte 0x414d + 65e: 5f58 .2byte 0x5f58 + 660: 414d .2byte 0x414d + 662: 2058 .2byte 0x2058 + 664: 5f5f 4e49 4d54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x4d + 66a: 5841 .2byte 0x5841 + 66c: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 672: 5f00 .2byte 0x5f00 + 674: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 + 67a: 5f58 .2byte 0x5f58 + 67c: 414d .2byte 0x414d + 67e: 5f58 .2byte 0x5f58 + 680: 5845 .2byte 0x5845 + 682: 5f50 .2byte 0x5f50 + 684: 205f 3631 3833 .byte 0x5f, 0x20, 0x31, 0x36, 0x33, 0x38 + 68a: 0034 .2byte 0x34 + 68c: 5f5f 5441 4d4f .byte 0x5f, 0x5f, 0x41, 0x54, 0x4f, 0x4d + 692: 4349 .2byte 0x4349 + 694: 535f 5145 435f .byte 0x5f, 0x53, 0x45, 0x51, 0x5f, 0x43 + 69a: 35205453 .4byte 0x35205453 + 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) + 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 3654 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x36 + a9c: 5f34 .2byte 0x5f34 + a9e: 5349 .2byte 0x5349 + aa0: 495f 4345 365f .byte 0x5f, 0x49, 0x45, 0x43, 0x5f, 0x36 + aa6: 3530 .2byte 0x3530 + aa8: 3935 .2byte 0x3935 + aaa: 5f5f 3220 5f00 .byte 0x5f, 0x5f, 0x20, 0x32, 0x00, 0x5f + ab0: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 + ab6: 485f 5341 445f .byte 0x5f, 0x48, 0x41, 0x53, 0x5f, 0x44 + abc: 4e45 .2byte 0x4e45 + abe: 5f4d524f .4byte 0x5f4d524f + ac2: 205f 0031 5f5f .byte 0x5f, 0x20, 0x31, 0x00, 0x5f, 0x5f + ac8: 4c46 .2byte 0x4c46 + aca: 3654 .2byte 0x3654 + acc: 5834 .2byte 0x5834 + ace: 4d5f 4e49 455f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x45 + ad4: 5058 .2byte 0x5058 + ad6: 5f5f 2820 312d .byte 0x5f, 0x5f, 0x20, 0x28, 0x2d, 0x31 + adc: 3336 .2byte 0x3336 + ade: 3138 .2byte 0x3138 + ae0: 0029 .2byte 0x29 + ae2: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f + ae8: 6c61 .2byte 0x6c61 + aea: 6169 .2byte 0x6169 + aec: 65745f73 .4byte 0x65745f73 + af0: 706d .2byte 0x706d + af2: 616c .2byte 0x616c + af4: 6574 .2byte 0x6574 + af6: 30322073 .4byte 0x30322073 + afa: 3730 .2byte 0x3730 + afc: 3430 .2byte 0x3430 + afe: 004c .2byte 0x4c + b00: 5f5f 4e49 5f54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x5f + b06: 4146 .2byte 0x4146 + b08: 34365453 .4byte 0x34365453 + b0c: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + b12: 3020 .2byte 0x3020 + b14: 3778 .2byte 0x3778 + b16: 6666 .2byte 0x6666 + b18: 6666 .2byte 0x6666 + b1a: 6666 .2byte 0x6666 + b1c: 6666 .2byte 0x6666 + b1e: 6666 .2byte 0x6666 + b20: 6666 .2byte 0x6666 + b22: 6666 .2byte 0x6666 + b24: 4c66 .2byte 0x4c66 + b26: 004c .2byte 0x4c + b28: 5f5f 4c46 5f54 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x5f + b2e: 4944 .2byte 0x4944 + b30: 205f5f47 .4byte 0x205f5f47 + b34: 0036 .2byte 0x36 + b36: 5f5f 4e49 5f54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x5f + b3c: 4146 .2byte 0x4146 + b3e: 36315453 .4byte 0x36315453 + b42: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + b48: 3020 .2byte 0x3020 + b4a: 3778 .2byte 0x3778 + b4c: 6666 .2byte 0x6666 + b4e: 6666 .2byte 0x6666 + b50: 6666 .2byte 0x6666 + b52: 0066 .2byte 0x66 + b54: 5f474953 .4byte 0x5f474953 + b58: 5441 .2byte 0x5441 + b5a: 43494d4f .4byte 0x43494d4f + b5e: 4d5f 5841 4900 .byte 0x5f, 0x4d, 0x41, 0x58, 0x00, 0x49 + b64: 544e .2byte 0x544e + b66: 465f 5341 3854 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x38 + b6c: 4d5f 5841 5f20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x5f + b72: 495f 544e 465f .byte 0x5f, 0x49, 0x4e, 0x54, 0x5f, 0x46 + b78: 5341 .2byte 0x5341 + b7a: 3854 .2byte 0x3854 + b7c: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + b82: 5f00 .2byte 0x5f00 + b84: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 + b8a: 455f 5350 4c49 .byte 0x5f, 0x45, 0x50, 0x53, 0x49, 0x4c + b90: 5f5f4e4f .4byte 0x5f5f4e4f + b94: 3220 .2byte 0x3220 + b96: 322e .2byte 0x322e + b98: 3032 .2byte 0x3032 + b9a: 3434 .2byte 0x3434 + b9c: 3036 .2byte 0x3036 + b9e: 3934 .2byte 0x3934 + ba0: 3532 .2byte 0x3532 + ba2: 3330 .2byte 0x3330 + ba4: 3331 .2byte 0x3331 + ba6: 3830 .2byte 0x3830 + ba8: 3830 .2byte 0x3830 + baa: 3734 .2byte 0x3734 + bac: 3632 .2byte 0x3632 + bae: 36333333 .4byte 0x36333333 + bb2: 3831 .2byte 0x3831 + bb4: 3631 .2byte 0x3631 + bb6: 3034 .2byte 0x3034 + bb8: 3236 .2byte 0x3236 + bba: 2d65 .2byte 0x2d65 + bbc: 3631 .2byte 0x3631 + bbe: 3646 .2byte 0x3646 + bc0: 0034 .2byte 0x34 + bc2: 5a5f 7336 7274 .byte 0x5f, 0x5a, 0x36, 0x73, 0x74, 0x72 + bc8: 656c .2byte 0x656c + bca: 506e .2byte 0x506e + bcc: 5f5f0063 beq x30,x21,11ac <_start-0x7fffee54> + bd0: 4c46 .2byte 0x4c46 + bd2: 3154 .2byte 0x3154 + bd4: 3832 .2byte 0x3832 + bd6: 4d5f 4e49 455f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x45 + bdc: 5058 .2byte 0x5058 + bde: 5f5f 2820 312d .byte 0x5f, 0x5f, 0x20, 0x28, 0x2d, 0x31 + be4: 3336 .2byte 0x3336 + be6: 3138 .2byte 0x3138 + be8: 0029 .2byte 0x29 + bea: 5f5f 5450 4452 .byte 0x5f, 0x5f, 0x50, 0x54, 0x52, 0x44 + bf0: 4649 .2byte 0x4649 + bf2: 5f46 .2byte 0x5f46 + bf4: 414d .2byte 0x414d + bf6: 5f58 .2byte 0x5f58 + bf8: 205f 7830 6637 .byte 0x5f, 0x20, 0x30, 0x78, 0x37, 0x66 + bfe: 6666 .2byte 0x6666 + c00: 6666 .2byte 0x6666 + c02: 6666 .2byte 0x6666 + c04: 5f00 .2byte 0x5f00 + c06: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 + c0c: 485f 5341 515f .byte 0x5f, 0x48, 0x41, 0x53, 0x5f, 0x51 + c12: 4955 .2byte 0x4955 + c14: 5445 .2byte 0x5445 + c16: 4e5f 4e41 5f5f .byte 0x5f, 0x4e, 0x41, 0x4e, 0x5f, 0x5f + c1c: 3120 .2byte 0x3120 + c1e: 5f00 .2byte 0x5f00 + c20: 555f 4e49 5f54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x5f + c26: 454c .2byte 0x454c + c28: 5341 .2byte 0x5341 + c2a: 3154 .2byte 0x3154 + c2c: 5f36 .2byte 0x5f36 + c2e: 414d .2byte 0x414d + c30: 5f58 .2byte 0x5f58 + c32: 205f 7830 6666 .byte 0x5f, 0x20, 0x30, 0x78, 0x66, 0x66 + c38: 6666 .2byte 0x6666 + c3a: 5f00 .2byte 0x5f00 + c3c: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 + c42: 445f 4345 4d49 .byte 0x5f, 0x44, 0x45, 0x43, 0x49, 0x4d + c48: 4c41 .2byte 0x4c41 + c4a: 445f 4749 5f5f .byte 0x5f, 0x44, 0x49, 0x47, 0x5f, 0x5f + c50: 3920 .2byte 0x3920 + c52: 5f00 .2byte 0x5f00 + c54: 475f 554e 5f43 .byte 0x5f, 0x47, 0x4e, 0x55, 0x43, 0x5f + c5a: 205f 3231 5f00 .byte 0x5f, 0x20, 0x31, 0x32, 0x00, 0x5f + c60: 4c5f 4244 5f4c .byte 0x5f, 0x4c, 0x44, 0x42, 0x4c, 0x5f + c66: 4944 .2byte 0x4944 + c68: 205f5f47 .4byte 0x205f5f47 + c6c: 5f003333 .4byte 0x5f003333 + c70: 555f 4e49 5f54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x5f + c76: 454c .2byte 0x454c + c78: 5341 .2byte 0x5341 + c7a: 3854 .2byte 0x3854 + c7c: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + c82: 3020 .2byte 0x3020 + c84: 6678 .2byte 0x6678 + c86: 0066 .2byte 0x66 + c88: 5f5f 4e49 3654 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x36 + c8e: 5f34 .2byte 0x5f34 + c90: 414d .2byte 0x414d + c92: 5f58 .2byte 0x5f58 + c94: 205f 7830 6637 .byte 0x5f, 0x20, 0x30, 0x78, 0x37, 0x66 + c9a: 6666 .2byte 0x6666 + c9c: 6666 .2byte 0x6666 + c9e: 6666 .2byte 0x6666 + ca0: 6666 .2byte 0x6666 + ca2: 6666 .2byte 0x6666 + ca4: 6666 .2byte 0x6666 + ca6: 6666 .2byte 0x6666 + ca8: 4c4c .2byte 0x4c4c + caa: 4900 .2byte 0x4900 + cac: 544e .2byte 0x544e + cae: 5f38 .2byte 0x5f38 + cb0: 494d .2byte 0x494d + cb2: 204e .2byte 0x204e + cb4: 2d28 .2byte 0x2d28 + cb6: 4e49 .2byte 0x4e49 + cb8: 3854 .2byte 0x3854 + cba: 4d5f 5841 2d20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x2d + cc0: 3120 .2byte 0x3120 + cc2: 0029 .2byte 0x29 + cc4: 5f5f 4357 4148 .byte 0x5f, 0x5f, 0x57, 0x43, 0x48, 0x41 + cca: 5f52 .2byte 0x5f52 + ccc: 5954 .2byte 0x5954 + cce: 4550 .2byte 0x4550 + cd0: 5f5f 6920 746e .byte 0x5f, 0x5f, 0x20, 0x69, 0x6e, 0x74 + cd6: 5f00 .2byte 0x5f00 + cd8: 495f 544e 5f38 .byte 0x5f, 0x49, 0x4e, 0x54, 0x38, 0x5f + cde: 414d .2byte 0x414d + ce0: 5f58 .2byte 0x5f58 + ce2: 205f 7830 6637 .byte 0x5f, 0x20, 0x30, 0x78, 0x37, 0x66 + ce8: 5f00 .2byte 0x5f00 + cea: 495f 544e 4c5f .byte 0x5f, 0x49, 0x4e, 0x54, 0x5f, 0x4c + cf0: 4145 .2byte 0x4145 + cf2: 32335453 .4byte 0x32335453 + cf6: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f + cfc: 205f 6f6c 676e .byte 0x5f, 0x20, 0x6c, 0x6f, 0x6e, 0x67 + d02: 6920 .2byte 0x6920 + d04: 746e .2byte 0x746e + d06: 5f00 .2byte 0x5f00 + d08: 635f 7070 635f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x63 + d0e: 74736e6f jal x28,37c54 <_start-0x7ffc83ac> + d12: 7865 .2byte 0x7865 + d14: 7270 .2byte 0x7270 + d16: 3220 .2byte 0x3220 + d18: 3130 .2byte 0x3130 + d1a: 3036 .2byte 0x3036 + d1c: 5f004c33 .4byte 0x5f004c33 + d20: 465f 544c 3231 .byte 0x5f, 0x46, 0x4c, 0x54, 0x31, 0x32 + d26: 5f38 .2byte 0x5f38 + d28: 414d .2byte 0x414d + d2a: 5f58 .2byte 0x5f58 + d2c: 5845 .2byte 0x5845 + d2e: 5f50 .2byte 0x5f50 + d30: 205f 3631 3833 .byte 0x5f, 0x20, 0x31, 0x36, 0x33, 0x38 + d36: 0034 .2byte 0x34 + d38: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 + d3e: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 + d44: 3436 .2byte 0x3436 + d46: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + d4c: 3020 .2byte 0x3020 + d4e: 6678 .2byte 0x6678 + d50: 6666 .2byte 0x6666 + d52: 6666 .2byte 0x6666 + d54: 6666 .2byte 0x6666 + d56: 6666 .2byte 0x6666 + d58: 6666 .2byte 0x6666 + d5a: 6666 .2byte 0x6666 + d5c: 6666 .2byte 0x6666 + d5e: 5566 .2byte 0x5566 + d60: 4c4c .2byte 0x4c4c + d62: 5f00 .2byte 0x5f00 + d64: 465f 544c 525f .byte 0x5f, 0x46, 0x4c, 0x54, 0x5f, 0x52 + d6a: 4441 .2byte 0x4441 + d6c: 5849 .2byte 0x5849 + d6e: 5f5f 3220 5f00 .byte 0x5f, 0x5f, 0x20, 0x32, 0x00, 0x5f + d74: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 + d7a: 5f58 .2byte 0x5f58 + d7c: 4544 .2byte 0x4544 + d7e: 4f4e .2byte 0x4f4e + d80: 4d52 .2byte 0x4d52 + d82: 4d5f 4e49 5f5f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x5f + d88: 3420 .2byte 0x3420 + d8a: 392e .2byte 0x392e + d8c: 3034 .2byte 0x3034 + d8e: 3536 .2byte 0x3536 + d90: 3436 .2byte 0x3436 + d92: 3835 .2byte 0x3835 + d94: 3134 .2byte 0x3134 + d96: 3432 .2byte 0x3432 + d98: 3536 .2byte 0x3536 + d9a: 3434 .2byte 0x3434 + d9c: 3731 .2byte 0x3731 + d9e: 3536 .2byte 0x3536 + da0: 3836 .2byte 0x3836 + da2: 38323937 lui x18,0x38323 + da6: 3836 .2byte 0x3836 + da8: 3232 .2byte 0x3232 + daa: 3331 .2byte 0x3331 + dac: 2d653237 lui x4,0x2d653 + db0: 46343233 .4byte 0x46343233 + db4: 00783233 sltu x4,x16,x7 + db8: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f + dbe: 6172 .2byte 0x6172 + dc0: 676e .2byte 0x676e + dc2: 5f65 .2byte 0x5f65 + dc4: 6162 .2byte 0x6162 + dc6: 5f646573 .4byte 0x5f646573 + dca: 6f66 .2byte 0x6f66 + dcc: 2072 .2byte 0x2072 + dce: 3032 .2byte 0x3032 + dd0: 3631 .2byte 0x3631 + dd2: 3330 .2byte 0x3330 + dd4: 004c .2byte 0x4c + dd6: 5f5f 4953 455a .byte 0x5f, 0x5f, 0x53, 0x49, 0x5a, 0x45 + ddc: 4c5f464f .4byte 0x4c5f464f + de0: 5f474e4f .4byte 0x5f474e4f + de4: 4f44 .2byte 0x4f44 + de6: 4255 .2byte 0x4255 + de8: 454c .2byte 0x454c + dea: 5f5f 3120 0036 .byte 0x5f, 0x5f, 0x20, 0x31, 0x36, 0x00 + df0: 5f5f 4244 5f4c .byte 0x5f, 0x5f, 0x44, 0x42, 0x4c, 0x5f + df6: 4148 .2byte 0x4148 + df8: 55515f53 .4byte 0x55515f53 + dfc: 4549 .2byte 0x4549 + dfe: 5f54 .2byte 0x5f54 + e00: 414e .2byte 0x414e + e02: 5f4e .2byte 0x5f4e + e04: 205f 0031 5f5f .byte 0x5f, 0x20, 0x31, 0x00, 0x5f, 0x5f + e0a: 4c46 .2byte 0x4c46 + e0c: 3654 .2byte 0x3654 + e0e: 5834 .2byte 0x5834 + e10: 495f 5f53 4549 .byte 0x5f, 0x49, 0x53, 0x5f, 0x49, 0x45 + e16: 30365f43 .4byte 0x30365f43 + e1a: 3535 .2byte 0x3535 + e1c: 5f39 .2byte 0x5f39 + e1e: 205f 0032 5f5f .byte 0x5f, 0x20, 0x32, 0x00, 0x5f, 0x5f + e24: 4e49 .2byte 0x4e49 + e26: 5f54 .2byte 0x5f54 + e28: 4146 .2byte 0x4146 + e2a: 5f385453 .4byte 0x5f385453 + e2e: 5954 .2byte 0x5954 + e30: 4550 .2byte 0x4550 + e32: 5f5f 6920 746e .byte 0x5f, 0x5f, 0x20, 0x69, 0x6e, 0x74 + e38: 5f00 .2byte 0x5f00 + e3a: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 + e40: 485f 5341 495f .byte 0x5f, 0x48, 0x41, 0x53, 0x5f, 0x49 + e46: 464e .2byte 0x464e + e48: 4e49 .2byte 0x4e49 + e4a: 5449 .2byte 0x5449 + e4c: 5f59 .2byte 0x5f59 + e4e: 205f 0031 4957 .byte 0x5f, 0x20, 0x31, 0x00, 0x57, 0x49 + e54: 544e .2byte 0x544e + e56: 4d5f 4e49 5f20 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x20, 0x5f + e5c: 575f 4e49 5f54 .byte 0x5f, 0x57, 0x49, 0x4e, 0x54, 0x5f + e62: 494d .2byte 0x494d + e64: 5f4e .2byte 0x5f4e + e66: 005f 5f5f 444c .byte 0x5f, 0x00, 0x5f, 0x5f, 0x4c, 0x44 + e6c: 4c42 .2byte 0x4c42 + e6e: 4d5f 5841 455f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x45 + e74: 5058 .2byte 0x5058 + e76: 5f5f 3120 3336 .byte 0x5f, 0x5f, 0x20, 0x31, 0x36, 0x33 + e7c: 3438 .2byte 0x3438 + e7e: 5f00 .2byte 0x5f00 + e80: 475f 4343 415f .byte 0x5f, 0x47, 0x43, 0x43, 0x5f, 0x41 + e86: 4f54 .2byte 0x4f54 + e88: 494d .2byte 0x494d + e8a: 4e495f43 .4byte 0x4e495f43 + e8e: 5f54 .2byte 0x5f54 + e90: 4f4c .2byte 0x4f4c + e92: 465f4b43 .4byte 0x465f4b43 + e96: 4552 .2byte 0x4552 + e98: 2045 .2byte 0x2045 + e9a: 0031 .2byte 0x31 + e9c: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f + ea2: 6962 .2byte 0x6962 + ea4: 616e .2byte 0x616e + ea6: 7972 .2byte 0x7972 + ea8: 6c5f 7469 7265 .byte 0x5f, 0x6c, 0x69, 0x74, 0x65, 0x72 + eae: 6c61 .2byte 0x6c61 + eb0: 30322073 .4byte 0x30322073 + eb4: 3331 .2byte 0x3331 + eb6: 3430 .2byte 0x3430 + eb8: 004c .2byte 0x4c + eba: 5f5f 4e49 4d54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x4d + ec0: 5841 .2byte 0x5841 + ec2: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + ec8: 3020 .2byte 0x3020 + eca: 3778 .2byte 0x3778 + ecc: 6666 .2byte 0x6666 + ece: 6666 .2byte 0x6666 + ed0: 6666 .2byte 0x6666 + ed2: 6666 .2byte 0x6666 + ed4: 6666 .2byte 0x6666 + ed6: 6666 .2byte 0x6666 + ed8: 6666 .2byte 0x6666 + eda: 4c66 .2byte 0x4c66 + edc: 004c .2byte 0x4c + ede: 5f5f 4e49 5f54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x5f + ee4: 454c .2byte 0x454c + ee6: 5341 .2byte 0x5341 + ee8: 3654 .2byte 0x3654 + eea: 5f34 .2byte 0x5f34 + eec: 54444957 .4byte 0x54444957 + ef0: 5f48 .2byte 0x5f48 + ef2: 205f 3436 4900 .byte 0x5f, 0x20, 0x36, 0x34, 0x00, 0x49 + ef8: 544e .2byte 0x544e + efa: 435f3233 .4byte 0x435f3233 + efe: 6328 .2byte 0x6328 + f00: 2029 .2byte 0x2029 + f02: 5f5f 4e49 3354 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x33 + f08: 5f32 .2byte 0x5f32 + f0a: 29632843 .4byte 0x29632843 + f0e: 5f00 .2byte 0x5f00 + f10: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 + f16: 4d5f 5841 315f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x31 + f1c: 5f30 .2byte 0x5f30 + f1e: 5845 .2byte 0x5845 + f20: 5f50 .2byte 0x5f50 + f22: 205f 3033 0038 .byte 0x5f, 0x20, 0x33, 0x30, 0x38, 0x00 + f28: 5f5f 524f 4544 .byte 0x5f, 0x5f, 0x4f, 0x52, 0x44, 0x45 + f2e: 5f52 .2byte 0x5f52 + f30: 494c .2byte 0x494c + f32: 5454 .2byte 0x5454 + f34: 454c .2byte 0x454c + f36: 455f 444e 4149 .byte 0x5f, 0x45, 0x4e, 0x44, 0x49, 0x41 + f3c: 5f4e .2byte 0x5f4e + f3e: 205f 3231 3433 .byte 0x5f, 0x20, 0x31, 0x32, 0x33, 0x34 + f44: 5f00 .2byte 0x5f00 + f46: 535f 5a49 4f45 .byte 0x5f, 0x53, 0x49, 0x5a, 0x45, 0x4f + f4c: 5f46 .2byte 0x5f46 + f4e: 5450 .2byte 0x5450 + f50: 4452 .2byte 0x4452 + f52: 4649 .2byte 0x4649 + f54: 5f46 .2byte 0x5f46 + f56: 5f54 .2byte 0x5f54 + f58: 205f 0034 5f5f .byte 0x5f, 0x20, 0x34, 0x00, 0x5f, 0x5f + f5e: 5f707063 bgeu x0,x23,153e <_start-0x7fffeac2> + f62: 6e75 .2byte 0x6e75 + f64: 6369 .2byte 0x6369 + f66: 5f65646f jal x8,5755c <_start-0x7ffa8aa4> + f6a: 696c .2byte 0x696c + f6c: 6574 .2byte 0x6574 + f6e: 6172 .2byte 0x6172 + f70: 736c .2byte 0x736c + f72: 3220 .2byte 0x3220 + f74: 3030 .2byte 0x3030 + f76: 4c303137 lui x2,0x4c303 + f7a: 5500 .2byte 0x5500 + f7c: 4e49 .2byte 0x4e49 + f7e: 5f54 .2byte 0x5f54 + f80: 454c .2byte 0x454c + f82: 5341 .2byte 0x5341 + f84: 3354 .2byte 0x3354 + f86: 5f32 .2byte 0x5f32 + f88: 414d .2byte 0x414d + f8a: 0058 .2byte 0x58 + f8c: 4e49 .2byte 0x4e49 + f8e: 5f54 .2byte 0x5f54 + f90: 4146 .2byte 0x4146 + f92: 34365453 .4byte 0x34365453 + f96: 4d5f 4e49 5000 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x00, 0x50 + f9c: 5254 .2byte 0x5254 + f9e: 4944 .2byte 0x4944 + fa0: 4646 .2byte 0x4646 + fa2: 4d5f 4e49 2820 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x20, 0x28 + fa8: 502d .2byte 0x502d + faa: 5254 .2byte 0x5254 + fac: 4944 .2byte 0x4944 + fae: 4646 .2byte 0x4646 + fb0: 4d5f 5841 2d20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x2d + fb6: 3120 .2byte 0x3120 + fb8: 0029 .2byte 0x29 + fba: 4955 .2byte 0x4955 + fbc: 544e .2byte 0x544e + fbe: 465f 5341 3654 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x36 + fc4: 5f34 .2byte 0x5f34 + fc6: 414d .2byte 0x414d + fc8: 2058 .2byte 0x2058 + fca: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 + fd0: 465f 5341 3654 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x36 + fd6: 5f34 .2byte 0x5f34 + fd8: 414d .2byte 0x414d + fda: 5f58 .2byte 0x5f58 + fdc: 005f 5450 4452 .byte 0x5f, 0x00, 0x50, 0x54, 0x52, 0x44 + fe2: 4649 .2byte 0x4649 + fe4: 5f46 .2byte 0x5f46 + fe6: 494d .2byte 0x494d + fe8: 004e .2byte 0x4e + fea: 5f5f 4c46 3654 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x36 + ff0: 5834 .2byte 0x5834 + ff2: 445f 4749 5f5f .byte 0x5f, 0x44, 0x49, 0x47, 0x5f, 0x5f + ff8: 3320 .2byte 0x3320 + ffa: 5f5f0033 .4byte 0x5f5f0033 + ffe: 4c46 .2byte 0x4c46 + 1000: 3654 .2byte 0x3654 + 1002: 5834 .2byte 0x5834 + 1004: 485f 5341 445f .byte 0x5f, 0x48, 0x41, 0x53, 0x5f, 0x44 + 100a: 4e45 .2byte 0x4e45 + 100c: 5f4d524f .4byte 0x5f4d524f + 1010: 205f 0031 4e49 .byte 0x5f, 0x20, 0x31, 0x00, 0x49, 0x4e + 1016: 4d54 .2byte 0x4d54 + 1018: 5841 .2byte 0x5841 + 101a: 4d5f 4e49 5500 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x00, 0x55 + 1020: 4e49 .2byte 0x4e49 + 1022: 5f54 .2byte 0x5f54 + 1024: 4146 .2byte 0x4146 + 1026: 5f385453 .4byte 0x5f385453 + 102a: 414d .2byte 0x414d + 102c: 0058 .2byte 0x58 + 102e: 5a5f 7336 7274 .byte 0x5f, 0x5a, 0x36, 0x73, 0x74, 0x72 + 1034: 50797063 bgeu x18,x7,1534 <_start-0x7fffeacc> + 1038: 005f5363 bge x30,x5,103e <_start-0x7fffefc2> + 103c: 6c61 .2byte 0x6c61 + 103e: 6f6c .2byte 0x6f6c + 1040: 66756263 bltu x10,x7,16a4 <_start-0x7fffe95c> + 1044: 5f00 .2byte 0x5f00 + 1046: 475f 5858 575f .byte 0x5f, 0x47, 0x58, 0x58, 0x5f, 0x57 + 104c: 4145 .2byte 0x4145 + 104e: 205f5f4b .4byte 0x205f5f4b + 1052: 0031 .2byte 0x31 + 1054: 5f5f 4c46 3654 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x36 + 105a: 5834 .2byte 0x5834 + 105c: 4d5f 4e49 315f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x31 + 1062: 5f30 .2byte 0x5f30 + 1064: 5845 .2byte 0x5845 + 1066: 5f50 .2byte 0x5f50 + 1068: 205f 2d28 3934 .byte 0x5f, 0x20, 0x28, 0x2d, 0x34, 0x39 + 106e: 00293133 sltu x2,x18,x2 + 1072: 5f5f 4244 5f4c .byte 0x5f, 0x5f, 0x44, 0x42, 0x4c, 0x5f + 1078: 4f4e .2byte 0x4f4e + 107a: 4d52 .2byte 0x4d52 + 107c: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 1082: 6420 .2byte 0x6420 + 1084: 6c62756f jal x10,2874a <_start-0x7ffd78b6> + 1088: 2865 .2byte 0x2865 + 108a: 2e31 .2byte 0x2e31 + 108c: 36373937 lui x18,0x36373 + 1090: 3339 .2byte 0x3339 + 1092: 3331 .2byte 0x3331 + 1094: 3834 .2byte 0x3834 + 1096: 3236 .2byte 0x3236 + 1098: 37353133 .4byte 0x37353133 + 109c: 3830 .2byte 0x3830 + 109e: 3431 .2byte 0x3431 + 10a0: 3235 .2byte 0x3235 + 10a2: 33323437 lui x8,0x33323 + 10a6: 37313337 lui x6,0x37313 + 10aa: 3430 .2byte 0x3430 + 10ac: 65373533 .4byte 0x65373533 + 10b0: 3830332b .4byte 0x3830332b + 10b4: 294c .2byte 0x294c + 10b6: 5f00 .2byte 0x5f00 + 10b8: 535f 4749 415f .byte 0x5f, 0x53, 0x49, 0x47, 0x5f, 0x41 + 10be: 4f54 .2byte 0x4f54 + 10c0: 494d .2byte 0x494d + 10c2: 414d5f43 .4byte 0x414d5f43 + 10c6: 5f58 .2byte 0x5f58 + 10c8: 205f 7830 6637 .byte 0x5f, 0x20, 0x30, 0x78, 0x37, 0x66 + 10ce: 6666 .2byte 0x6666 + 10d0: 6666 .2byte 0x6666 + 10d2: 6666 .2byte 0x6666 + 10d4: 5f00 .2byte 0x5f00 + 10d6: 555f 4e49 5f54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x5f + 10dc: 4146 .2byte 0x4146 + 10de: 5f385453 .4byte 0x5f385453 + 10e2: 414d .2byte 0x414d + 10e4: 5f58 .2byte 0x5f58 + 10e6: 205f 7830 6666 .byte 0x5f, 0x20, 0x30, 0x78, 0x66, 0x66 + 10ec: 6666 .2byte 0x6666 + 10ee: 6666 .2byte 0x6666 + 10f0: 6666 .2byte 0x6666 + 10f2: 0055 .2byte 0x55 + 10f4: 4955 .2byte 0x4955 + 10f6: 544e .2byte 0x544e + 10f8: 3436 .2byte 0x3436 + 10fa: 435f 5f00 465f .byte 0x5f, 0x43, 0x00, 0x5f, 0x5f, 0x46 + 1100: 544c .2byte 0x544c + 1102: 3231 .2byte 0x3231 + 1104: 5f38 .2byte 0x5f38 + 1106: 414d .2byte 0x414d + 1108: 5f58 .2byte 0x5f58 + 110a: 3031 .2byte 0x3031 + 110c: 455f 5058 5f5f .byte 0x5f, 0x45, 0x58, 0x50, 0x5f, 0x5f + 1112: 3420 .2byte 0x3420 + 1114: 3339 .2byte 0x3339 + 1116: 0032 .2byte 0x32 + 1118: 5f5f 4c46 3654 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x36 + 111e: 5f34 .2byte 0x5f34 + 1120: 494d .2byte 0x494d + 1122: 5f4e .2byte 0x5f4e + 1124: 3031 .2byte 0x3031 + 1126: 455f 5058 5f5f .byte 0x5f, 0x45, 0x58, 0x50, 0x5f, 0x5f + 112c: 2820 .2byte 0x2820 + 112e: 332d .2byte 0x332d + 1130: 3730 .2byte 0x3730 + 1132: 0029 .2byte 0x29 + 1134: 4955 .2byte 0x4955 + 1136: 544e .2byte 0x544e + 1138: 5f38 .2byte 0x5f38 + 113a: 29632843 .4byte 0x29632843 + 113e: 5f20 .2byte 0x5f20 + 1140: 555f 4e49 3854 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x38 + 1146: 435f 6328 0029 .byte 0x5f, 0x43, 0x28, 0x63, 0x29, 0x00 + 114c: 5f5f 4e49 5f54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x5f + 1152: 4146 .2byte 0x4146 + 1154: 36315453 .4byte 0x36315453 + 1158: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f + 115e: 205f 6e69 0074 .byte 0x5f, 0x20, 0x69, 0x6e, 0x74, 0x00 + 1164: 5f5f 4c46 3154 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x31 + 116a: 3832 .2byte 0x3832 + 116c: 445f 4749 5f5f .byte 0x5f, 0x44, 0x49, 0x47, 0x5f, 0x5f + 1172: 3320 .2byte 0x3320 + 1174: 5f5f0033 .4byte 0x5f5f0033 + 1178: 4955 .2byte 0x4955 + 117a: 544e .2byte 0x544e + 117c: 3631 .2byte 0x3631 + 117e: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f + 1184: 205f 6873 726f .byte 0x5f, 0x20, 0x73, 0x68, 0x6f, 0x72 + 118a: 2074 .2byte 0x2074 + 118c: 6e75 .2byte 0x6e75 + 118e: 6e676973 .4byte 0x6e676973 + 1192: 6465 .2byte 0x6465 + 1194: 6920 .2byte 0x6920 + 1196: 746e .2byte 0x746e + 1198: 5f00 .2byte 0x5f00 + 119a: 4c5f 4244 5f4c .byte 0x5f, 0x4c, 0x44, 0x42, 0x4c, 0x5f + 11a0: 414d .2byte 0x414d + 11a2: 5f58 .2byte 0x5f58 + 11a4: 205f 2e31 3831 .byte 0x5f, 0x20, 0x31, 0x2e, 0x31, 0x38 + 11aa: 3739 .2byte 0x3739 + 11ac: 39343133 .4byte 0x39343133 + 11b0: 3335 .2byte 0x3335 + 11b2: 3735 .2byte 0x3735 + 11b4: 3332 .2byte 0x3332 + 11b6: 3731 .2byte 0x3731 + 11b8: 3536 .2byte 0x3536 + 11ba: 3830 .2byte 0x3830 + 11bc: 3735 .2byte 0x3735 + 11be: 3935 .2byte 0x3935 + 11c0: 36363233 .4byte 0x36363233 + 11c4: 3832 .2byte 0x3832 + 11c6: 3030 .2byte 0x3030 + 11c8: 65323037 lui x0,0x65323 + 11cc: 3339342b .4byte 0x3339342b + 11d0: 4c32 .2byte 0x4c32 + 11d2: 5f00 .2byte 0x5f00 + 11d4: 575f 4843 5241 .byte 0x5f, 0x57, 0x43, 0x48, 0x41, 0x52 + 11da: 575f 4449 4854 .byte 0x5f, 0x57, 0x49, 0x44, 0x54, 0x48 + 11e0: 5f5f 3320 0032 .byte 0x5f, 0x5f, 0x20, 0x33, 0x32, 0x00 + 11e6: 5f5f 4e47 4355 .byte 0x5f, 0x5f, 0x47, 0x4e, 0x55, 0x43 + 11ec: 535f 4454 5f43 .byte 0x5f, 0x53, 0x54, 0x44, 0x43, 0x5f + 11f2: 4e49 .2byte 0x4e49 + 11f4: 494c .2byte 0x494c + 11f6: 454e .2byte 0x454e + 11f8: 5f5f 3120 4900 .byte 0x5f, 0x5f, 0x20, 0x31, 0x00, 0x49 + 11fe: 544e .2byte 0x544e + 1200: 414d .2byte 0x414d + 1202: 5f58 .2byte 0x5f58 + 1204: 29632843 .4byte 0x29632843 + 1208: 5f20 .2byte 0x5f20 + 120a: 495f 544e 414d .byte 0x5f, 0x49, 0x4e, 0x54, 0x4d, 0x41 + 1210: 5f58 .2byte 0x5f58 + 1212: 29632843 .4byte 0x29632843 + 1216: 5f00 .2byte 0x5f00 + 1218: 4c5f 4e4f 5f47 .byte 0x5f, 0x4c, 0x4f, 0x4e, 0x47, 0x5f + 121e: 4f4c .2byte 0x4f4c + 1220: 474e .2byte 0x474e + 1222: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 1228: 3020 .2byte 0x3020 + 122a: 3778 .2byte 0x3778 + 122c: 6666 .2byte 0x6666 + 122e: 6666 .2byte 0x6666 + 1230: 6666 .2byte 0x6666 + 1232: 6666 .2byte 0x6666 + 1234: 6666 .2byte 0x6666 + 1236: 6666 .2byte 0x6666 + 1238: 6666 .2byte 0x6666 + 123a: 4c66 .2byte 0x4c66 + 123c: 004c .2byte 0x4c + 123e: 5f5f 4e49 3654 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x36 + 1244: 5f34 .2byte 0x5f34 + 1246: 5954 .2byte 0x5954 + 1248: 4550 .2byte 0x4550 + 124a: 5f5f 6c20 6e6f .byte 0x5f, 0x5f, 0x20, 0x6c, 0x6f, 0x6e + 1250: 6f6c2067 .4byte 0x6f6c2067 + 1254: 676e .2byte 0x676e + 1256: 6920 .2byte 0x6920 + 1258: 746e .2byte 0x746e + 125a: 5f00 .2byte 0x5f00 + 125c: 465f 544c 4d5f .byte 0x5f, 0x46, 0x4c, 0x54, 0x5f, 0x4d + 1262: 5841 .2byte 0x5841 + 1264: 315f 5f30 5845 .byte 0x5f, 0x31, 0x30, 0x5f, 0x45, 0x58 + 126a: 5f50 .2byte 0x5f50 + 126c: 205f 3833 5f00 .byte 0x5f, 0x20, 0x33, 0x38, 0x00, 0x5f + 1272: 4c5f 4244 5f4c .byte 0x5f, 0x4c, 0x44, 0x42, 0x4c, 0x5f + 1278: 5045 .2byte 0x5045 + 127a: 4f4c4953 .4byte 0x4f4c4953 + 127e: 5f4e .2byte 0x5f4e + 1280: 205f 2e31 3239 .byte 0x5f, 0x20, 0x31, 0x2e, 0x39, 0x32 + 1286: 3935 .2byte 0x3935 + 1288: 3932 .2byte 0x3932 + 128a: 3439 .2byte 0x3439 + 128c: 3334 .2byte 0x3334 + 128e: 3738 .2byte 0x3738 + 1290: 3332 .2byte 0x3332 + 1292: 3835 .2byte 0x3835 + 1294: 3335 .2byte 0x3335 + 1296: 3530 .2byte 0x3530 + 1298: 3935 .2byte 0x3935 + 129a: 34393737 lui x14,0x34393 + 129e: 3532 .2byte 0x3532 + 12a0: 3438 .2byte 0x3438 + 12a2: 3239 .2byte 0x3239 + 12a4: 65323337 lui x6,0x65323 + 12a8: 332d .2byte 0x332d + 12aa: 4c34 .2byte 0x4c34 + 12ac: 5f00 .2byte 0x5f00 + 12ae: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 + 12b4: 5f58 .2byte 0x5f58 + 12b6: 5045 .2byte 0x5045 + 12b8: 4f4c4953 .4byte 0x4f4c4953 + 12bc: 5f4e .2byte 0x5f4e + 12be: 205f 2e32 3232 .byte 0x5f, 0x20, 0x32, 0x2e, 0x32, 0x32 + 12c4: 3430 .2byte 0x3430 + 12c6: 3634 .2byte 0x3634 + 12c8: 3430 .2byte 0x3430 + 12ca: 3239 .2byte 0x3239 + 12cc: 3035 .2byte 0x3035 + 12ce: 30333133 .4byte 0x30333133 + 12d2: 3038 .2byte 0x3038 + 12d4: 3438 .2byte 0x3438 + 12d6: 33363237 lui x4,0x33363 + 12da: 31363333 .4byte 0x31363333 + 12de: 3138 .2byte 0x3138 + 12e0: 3436 .2byte 0x3436 + 12e2: 3630 .2byte 0x3630 + 12e4: 6532 .2byte 0x6532 + 12e6: 312d .2byte 0x312d + 12e8: 4636 .2byte 0x4636 + 12ea: 00783233 sltu x4,x16,x7 + 12ee: 5f5f 4f4e 495f .byte 0x5f, 0x5f, 0x4e, 0x4f, 0x5f, 0x49 + 12f4: 4c4e .2byte 0x4c4e + 12f6: 4e49 .2byte 0x4e49 + 12f8: 5f45 .2byte 0x5f45 + 12fa: 205f 0031 5f5f .byte 0x5f, 0x20, 0x31, 0x00, 0x5f, 0x5f + 1300: 6972 .2byte 0x6972 + 1302: 5f766373 .4byte 0x5f766373 + 1306: 6c78 .2byte 0x6c78 + 1308: 6e65 .2byte 0x6e65 + 130a: 3320 .2byte 0x3320 + 130c: 0032 .2byte 0x32 + 130e: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f + 1314: 656e .2byte 0x656e + 1316: 64657473 .4byte 0x64657473 + 131a: 6e5f 6d61 7365 .byte 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x73 + 1320: 6170 .2byte 0x6170 + 1322: 645f6563 bltu x30,x5,196c <_start-0x7fffe694> + 1326: 6665 .2byte 0x6665 + 1328: 6e69 .2byte 0x6e69 + 132a: 7469 .2byte 0x7469 + 132c: 6f69 .2byte 0x6f69 + 132e: 736e .2byte 0x736e + 1330: 3220 .2byte 0x3220 + 1332: 3130 .2byte 0x3130 + 1334: 3134 .2byte 0x3134 + 1336: 4c31 .2byte 0x4c31 + 1338: 5f00 .2byte 0x5f00 + 133a: 465f 544c 4d5f .byte 0x5f, 0x46, 0x4c, 0x54, 0x5f, 0x4d + 1340: 4e41 .2byte 0x4e41 + 1342: 5f54 .2byte 0x5f54 + 1344: 4944 .2byte 0x4944 + 1346: 205f5f47 .4byte 0x205f5f47 + 134a: 3432 .2byte 0x3432 + 134c: 5f00 .2byte 0x5f00 + 134e: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 + 1354: 445f 4345 4d49 .byte 0x5f, 0x44, 0x45, 0x43, 0x49, 0x4d + 135a: 4c41 .2byte 0x4c41 + 135c: 445f 4749 5f5f .byte 0x5f, 0x44, 0x49, 0x47, 0x5f, 0x5f + 1362: 3120 .2byte 0x3120 + 1364: 5f5f0037 lui x0,0x5f5f0 + 1368: 4552 .2byte 0x4552 + 136a: 54534947 .4byte 0x54534947 + 136e: 5245 .2byte 0x5245 + 1370: 505f 4552 4946 .byte 0x5f, 0x50, 0x52, 0x45, 0x46, 0x49 + 1376: 5f58 .2byte 0x5f58 + 1378: 205f 5f00 465f .byte 0x5f, 0x20, 0x00, 0x5f, 0x5f, 0x46 + 137e: 544c .2byte 0x544c + 1380: 4d5f3233 .4byte 0x4d5f3233 + 1384: 4e49 .2byte 0x4e49 + 1386: 455f 5058 5f5f .byte 0x5f, 0x45, 0x58, 0x50, 0x5f, 0x5f + 138c: 2820 .2byte 0x2820 + 138e: 312d .2byte 0x312d + 1390: 3532 .2byte 0x3532 + 1392: 0029 .2byte 0x29 + 1394: 544e4957 .4byte 0x544e4957 + 1398: 4d5f 5841 5f00 .byte 0x5f, 0x4d, 0x41, 0x58, 0x00, 0x5f + 139e: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 + 13a4: 5f58 .2byte 0x5f58 + 13a6: 4f4e .2byte 0x4f4e + 13a8: 4d52 .2byte 0x4d52 + 13aa: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 13b0: 3120 .2byte 0x3120 + 13b2: 312e .2byte 0x312e + 13b4: 3938 .2byte 0x3938 + 13b6: 34313337 lui x6,0x34313 + 13ba: 3539 .2byte 0x3539 + 13bc: 32373533 .4byte 0x32373533 + 13c0: 36373133 .4byte 0x36373133 + 13c4: 3035 .2byte 0x3035 + 13c6: 3538 .2byte 0x3538 + 13c8: 33393537 lui x10,0x33393 + 13cc: 3632 .2byte 0x3632 + 13ce: 3236 .2byte 0x3236 + 13d0: 3038 .2byte 0x3038 + 13d2: 3730 .2byte 0x3730 + 13d4: 3230 .2byte 0x3230 + 13d6: 2b65 .2byte 0x2b65 + 13d8: 3934 .2byte 0x3934 + 13da: 36463233 .4byte 0x36463233 + 13de: 7834 .2byte 0x7834 + 13e0: 5f00 .2byte 0x5f00 + 13e2: 555f 4e49 5f54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x5f + 13e8: 4146 .2byte 0x4146 + 13ea: 36315453 .4byte 0x36315453 + 13ee: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 13f4: 3020 .2byte 0x3020 + 13f6: 6678 .2byte 0x6678 + 13f8: 6666 .2byte 0x6666 + 13fa: 6666 .2byte 0x6666 + 13fc: 6666 .2byte 0x6666 + 13fe: 5566 .2byte 0x5566 + 1400: 5f00 .2byte 0x5f00 + 1402: 555f 4e49 5f54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x5f + 1408: 4146 .2byte 0x4146 + 140a: 36315453 .4byte 0x36315453 + 140e: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f + 1414: 205f 6e75 6973 .byte 0x5f, 0x20, 0x75, 0x6e, 0x73, 0x69 + 141a: 64656e67 .4byte 0x64656e67 + 141e: 6920 .2byte 0x6920 + 1420: 746e .2byte 0x746e + 1422: 5f00 .2byte 0x5f00 + 1424: 465f 544c 4d5f .byte 0x5f, 0x46, 0x4c, 0x54, 0x5f, 0x4d + 142a: 5841 .2byte 0x5841 + 142c: 5f5f 3320 342e .byte 0x5f, 0x5f, 0x20, 0x33, 0x2e, 0x34 + 1432: 3230 .2byte 0x3230 + 1434: 3238 .2byte 0x3238 + 1436: 36363433 .4byte 0x36363433 + 143a: 32353833 .4byte 0x32353833 + 143e: 3838 .2byte 0x3838 + 1440: 3935 .2byte 0x3935 + 1442: 3138 .2byte 0x3138 + 1444: 3731 .2byte 0x3731 + 1446: 3430 .2byte 0x3430 + 1448: 3831 .2byte 0x3831 + 144a: 34383433 .4byte 0x34383433 + 144e: 3135 .2byte 0x3135 + 1450: 3936 .2byte 0x3936 + 1452: 3532 .2byte 0x3532 + 1454: 2b65 .2byte 0x2b65 + 1456: 00463833 sltu x16,x12,x4 + 145a: 5f5f 4244 5f4c .byte 0x5f, 0x5f, 0x44, 0x42, 0x4c, 0x5f + 1460: 494d .2byte 0x494d + 1462: 5f4e .2byte 0x5f4e + 1464: 3031 .2byte 0x3031 + 1466: 455f 5058 5f5f .byte 0x5f, 0x45, 0x58, 0x50, 0x5f, 0x5f + 146c: 2820 .2byte 0x2820 + 146e: 332d .2byte 0x332d + 1470: 3730 .2byte 0x3730 + 1472: 0029 .2byte 0x29 + 1474: 4e49 .2byte 0x4e49 + 1476: 5f54 .2byte 0x5f54 + 1478: 4146 .2byte 0x4146 + 147a: 32335453 .4byte 0x32335453 + 147e: 4d5f 5841 5f20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x5f + 1484: 495f 544e 465f .byte 0x5f, 0x49, 0x4e, 0x54, 0x5f, 0x46 + 148a: 5341 .2byte 0x5341 + 148c: 3354 .2byte 0x3354 + 148e: 5f32 .2byte 0x5f32 + 1490: 414d .2byte 0x414d + 1492: 5f58 .2byte 0x5f58 + 1494: 005f 5f5f 4c46 .byte 0x5f, 0x00, 0x5f, 0x5f, 0x46, 0x4c + 149a: 3154 .2byte 0x3154 + 149c: 3832 .2byte 0x3832 + 149e: 485f 5341 495f .byte 0x5f, 0x48, 0x41, 0x53, 0x5f, 0x49 + 14a4: 464e .2byte 0x464e + 14a6: 4e49 .2byte 0x4e49 + 14a8: 5449 .2byte 0x5449 + 14aa: 5f59 .2byte 0x5f59 + 14ac: 205f 0031 4955 .byte 0x5f, 0x20, 0x31, 0x00, 0x55, 0x49 + 14b2: 544e .2byte 0x544e + 14b4: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 + 14ba: 3436 .2byte 0x3436 + 14bc: 4d5f 5841 5f00 .byte 0x5f, 0x4d, 0x41, 0x58, 0x00, 0x5f + 14c2: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 + 14c8: 445f 4749 5f5f .byte 0x5f, 0x44, 0x49, 0x47, 0x5f, 0x5f + 14ce: 3620 .2byte 0x3620 + 14d0: 5f00 .2byte 0x5f00 + 14d2: 5f434347 .4byte 0x5f434347 + 14d6: 49445453 .4byte 0x49445453 + 14da: 544e .2byte 0x544e + 14dc: 485f 0020 5f5f .byte 0x5f, 0x48, 0x20, 0x00, 0x5f, 0x5f + 14e2: 4c46 .2byte 0x4c46 + 14e4: 3654 .2byte 0x3654 + 14e6: 5f34 .2byte 0x5f34 + 14e8: 4148 .2byte 0x4148 + 14ea: 45445f53 .4byte 0x45445f53 + 14ee: 4f4e .2byte 0x4f4e + 14f0: 4d52 .2byte 0x4d52 + 14f2: 5f5f 3120 5f00 .byte 0x5f, 0x5f, 0x20, 0x31, 0x00, 0x5f + 14f8: 635f 7070 765f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x76 + 14fe: 7261 .2byte 0x7261 + 1500: 6169 .2byte 0x6169 + 1502: 6c62 .2byte 0x6c62 + 1504: 5f65 .2byte 0x5f65 + 1506: 6574 .2byte 0x6574 + 1508: 706d .2byte 0x706d + 150a: 616c .2byte 0x616c + 150c: 6574 .2byte 0x6574 + 150e: 30322073 .4byte 0x30322073 + 1512: 3331 .2byte 0x3331 + 1514: 3430 .2byte 0x3430 + 1516: 004c .2byte 0x4c + 1518: 5f5f 4c46 5f54 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x5f + 151e: 5645 .2byte 0x5645 + 1520: 4c41 .2byte 0x4c41 + 1522: 4d5f 5445 4f48 .byte 0x5f, 0x4d, 0x45, 0x54, 0x48, 0x4f + 1528: 5f44 .2byte 0x5f44 + 152a: 205f 0030 5f5f .byte 0x5f, 0x20, 0x30, 0x00, 0x5f, 0x5f + 1530: 5f707063 bgeu x0,x23,1b10 <_start-0x7fffe4f0> + 1534: 7672 .2byte 0x7672 + 1536: 6c61 .2byte 0x6c61 + 1538: 6575 .2byte 0x6575 + 153a: 725f 6665 7265 .byte 0x5f, 0x72, 0x65, 0x66, 0x65, 0x72 + 1540: 6e65 .2byte 0x6e65 + 1542: 32206563 bltu x0,x2,186c <_start-0x7fffe794> + 1546: 3030 .2byte 0x3030 + 1548: 3136 .2byte 0x3136 + 154a: 4c30 .2byte 0x4c30 + 154c: 5f00 .2byte 0x5f00 + 154e: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 + 1554: 5f58 .2byte 0x5f58 + 1556: 4148 .2byte 0x4148 + 1558: 45445f53 .4byte 0x45445f53 + 155c: 4f4e .2byte 0x4f4e + 155e: 4d52 .2byte 0x4d52 + 1560: 5f5f 3120 5f00 .byte 0x5f, 0x5f, 0x20, 0x31, 0x00, 0x5f + 1566: 635f 7070 655f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x65 + 156c: 6378 .2byte 0x6378 + 156e: 7065 .2byte 0x7065 + 1570: 6974 .2byte 0x6974 + 1572: 20736e6f jal x28,37f78 <_start-0x7ffc8088> + 1576: 3931 .2byte 0x3931 + 1578: 3739 .2byte 0x3739 + 157a: 3131 .2byte 0x3131 + 157c: 004c .2byte 0x4c + 157e: 5f5f 4e49 5f54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x5f + 1584: 454c .2byte 0x454c + 1586: 5341 .2byte 0x5341 + 1588: 3654 .2byte 0x3654 + 158a: 5f34 .2byte 0x5f34 + 158c: 414d .2byte 0x414d + 158e: 5f58 .2byte 0x5f58 + 1590: 205f 7830 6637 .byte 0x5f, 0x20, 0x30, 0x78, 0x37, 0x66 + 1596: 6666 .2byte 0x6666 + 1598: 6666 .2byte 0x6666 + 159a: 6666 .2byte 0x6666 + 159c: 6666 .2byte 0x6666 + 159e: 6666 .2byte 0x6666 + 15a0: 6666 .2byte 0x6666 + 15a2: 6666 .2byte 0x6666 + 15a4: 4c4c .2byte 0x4c4c + 15a6: 5f00 .2byte 0x5f00 + 15a8: 475f 4343 415f .byte 0x5f, 0x47, 0x43, 0x43, 0x5f, 0x41 + 15ae: 4f54 .2byte 0x4f54 + 15b0: 494d .2byte 0x494d + 15b2: 43575f43 .4byte 0x43575f43 + 15b6: 4148 .2byte 0x4148 + 15b8: 5f52 .2byte 0x5f52 + 15ba: 5f54 .2byte 0x5f54 + 15bc: 4f4c .2byte 0x4f4c + 15be: 465f4b43 .4byte 0x465f4b43 + 15c2: 4552 .2byte 0x4552 + 15c4: 2045 .2byte 0x2045 + 15c6: 0031 .2byte 0x31 + 15c8: 5f5f 4c46 3154 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x31 + 15ce: 3832 .2byte 0x3832 + 15d0: 4d5f 4e49 5f5f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x5f + 15d6: 3320 .2byte 0x3320 + 15d8: 332e .2byte 0x332e + 15da: 3236 .2byte 0x3236 + 15dc: 3031 .2byte 0x3031 + 15de: 33343133 .4byte 0x33343133 + 15e2: 3131 .2byte 0x3131 + 15e4: 3032 .2byte 0x3032 + 15e6: 3339 .2byte 0x3339 + 15e8: 3035 .2byte 0x3035 + 15ea: 3236 .2byte 0x3236 + 15ec: 3236 .2byte 0x3236 + 15ee: 3736 .2byte 0x3736 + 15f0: 37313837 lui x16,0x37313 + 15f4: 37313233 .4byte 0x37313233 + 15f8: 3235 .2byte 0x3235 + 15fa: 3036 .2byte 0x3036 + 15fc: 2d65 .2byte 0x2d65 + 15fe: 3934 .2byte 0x3934 + 1600: 31463233 .4byte 0x31463233 + 1604: 3832 .2byte 0x3832 + 1606: 5f00 .2byte 0x5f00 + 1608: 725f 7369 7663 .byte 0x5f, 0x72, 0x69, 0x73, 0x63, 0x76 + 160e: 615f 6372 5f68 .byte 0x5f, 0x61, 0x72, 0x63, 0x68, 0x5f + 1614: 6574 .2byte 0x6574 + 1616: 31207473 .4byte 0x31207473 + 161a: 5f00 .2byte 0x5f00 + 161c: 495f 544e 465f .byte 0x5f, 0x49, 0x4e, 0x54, 0x5f, 0x46 + 1622: 5341 .2byte 0x5341 + 1624: 3354 .2byte 0x3354 + 1626: 5f32 .2byte 0x5f32 + 1628: 54444957 .4byte 0x54444957 + 162c: 5f48 .2byte 0x5f48 + 162e: 205f 3233 5f00 .byte 0x5f, 0x20, 0x33, 0x32, 0x00, 0x5f + 1634: 495f 544e 4c5f .byte 0x5f, 0x49, 0x4e, 0x54, 0x5f, 0x4c + 163a: 4145 .2byte 0x4145 + 163c: 5f385453 .4byte 0x5f385453 + 1640: 54444957 .4byte 0x54444957 + 1644: 5f48 .2byte 0x5f48 + 1646: 205f 0038 5f5f .byte 0x5f, 0x20, 0x38, 0x00, 0x5f, 0x5f + 164c: 4955 .2byte 0x4955 + 164e: 544e .2byte 0x544e + 1650: 5f38 .2byte 0x5f38 + 1652: 414d .2byte 0x414d + 1654: 5f58 .2byte 0x5f58 + 1656: 205f 7830 6666 .byte 0x5f, 0x20, 0x30, 0x78, 0x66, 0x66 + 165c: 5f00 .2byte 0x5f00 + 165e: 555f 4e49 3154 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x31 + 1664: 5f36 .2byte 0x5f36 + 1666: 414d .2byte 0x414d + 1668: 5f58 .2byte 0x5f58 + 166a: 205f 7830 6666 .byte 0x5f, 0x20, 0x30, 0x78, 0x66, 0x66 + 1670: 6666 .2byte 0x6666 + 1672: 4900 .2byte 0x4900 + 1674: 544e .2byte 0x544e + 1676: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 + 167c: 5f38 .2byte 0x5f38 + 167e: 414d .2byte 0x414d + 1680: 2058 .2byte 0x2058 + 1682: 5f5f 4e49 5f54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x5f + 1688: 454c .2byte 0x454c + 168a: 5341 .2byte 0x5341 + 168c: 3854 .2byte 0x3854 + 168e: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 1694: 5300 .2byte 0x5300 + 1696: 5a49 .2byte 0x5a49 + 1698: 5f45 .2byte 0x5f45 + 169a: 414d .2byte 0x414d + 169c: 2058 .2byte 0x2058 + 169e: 5f5f 4953 455a .byte 0x5f, 0x5f, 0x53, 0x49, 0x5a, 0x45 + 16a4: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 16aa: 5f00 .2byte 0x5f00 + 16ac: 495f 544e 414d .byte 0x5f, 0x49, 0x4e, 0x54, 0x4d, 0x41 + 16b2: 5f58 .2byte 0x5f58 + 16b4: 54444957 .4byte 0x54444957 + 16b8: 5f48 .2byte 0x5f48 + 16ba: 205f 3436 5f00 .byte 0x5f, 0x20, 0x36, 0x34, 0x00, 0x5f + 16c0: 475f 4343 495f .byte 0x5f, 0x47, 0x43, 0x43, 0x5f, 0x49 + 16c6: 4345 .2byte 0x4345 + 16c8: 355f 3935 3020 .byte 0x5f, 0x35, 0x35, 0x39, 0x20, 0x30 + 16ce: 5f00 .2byte 0x5f00 + 16d0: 445f 4c42 495f .byte 0x5f, 0x44, 0x42, 0x4c, 0x5f, 0x49 + 16d6: 45495f53 .4byte 0x45495f53 + 16da: 30365f43 .4byte 0x30365f43 + 16de: 3535 .2byte 0x3535 + 16e0: 5f39 .2byte 0x5f39 + 16e2: 205f 0032 5f5f .byte 0x5f, 0x20, 0x32, 0x00, 0x5f, 0x5f + 16e8: 4e49 .2byte 0x4e49 + 16ea: 5f54 .2byte 0x5f54 + 16ec: 454c .2byte 0x454c + 16ee: 5341 .2byte 0x5341 + 16f0: 3154 .2byte 0x3154 + 16f2: 5f36 .2byte 0x5f36 + 16f4: 5954 .2byte 0x5954 + 16f6: 4550 .2byte 0x4550 + 16f8: 5f5f 7320 6f68 .byte 0x5f, 0x5f, 0x20, 0x73, 0x68, 0x6f + 16fe: 7472 .2byte 0x7472 + 1700: 6920 .2byte 0x6920 + 1702: 746e .2byte 0x746e + 1704: 5f00 .2byte 0x5f00 + 1706: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 + 170c: 4d5f 5841 455f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x45 + 1712: 5058 .2byte 0x5058 + 1714: 5f5f 3120 3832 .byte 0x5f, 0x5f, 0x20, 0x31, 0x32, 0x38 + 171a: 5f00 .2byte 0x5f00 + 171c: 535f 4454 5043 .byte 0x5f, 0x53, 0x54, 0x44, 0x43, 0x50 + 1722: 5f50 .2byte 0x5f50 + 1724: 4544 .2byte 0x4544 + 1726: 4146 .2byte 0x4146 + 1728: 4c55 .2byte 0x4c55 + 172a: 5f54 .2byte 0x5f54 + 172c: 454e .2byte 0x454e + 172e: 4c415f57 .4byte 0x4c415f57 + 1732: 4749 .2byte 0x4749 + 1734: 4d4e .2byte 0x4d4e + 1736: 4e45 .2byte 0x4e45 + 1738: 5f54 .2byte 0x5f54 + 173a: 205f 3631 5700 .byte 0x5f, 0x20, 0x31, 0x36, 0x00, 0x57 + 1740: 52414843 .4byte 0x52414843 + 1744: 4d5f 4e49 4900 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x00, 0x49 + 174a: 544e .2byte 0x544e + 174c: 465f 5341 3854 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x38 + 1752: 4d5f 4e49 2820 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x20, 0x28 + 1758: 492d .2byte 0x492d + 175a: 544e .2byte 0x544e + 175c: 465f 5341 3854 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x38 + 1762: 4d5f 5841 2d20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x2d + 1768: 3120 .2byte 0x3120 + 176a: 0029 .2byte 0x29 + 176c: 5f5f 4e49 3854 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x38 + 1772: 435f 6328 2029 .byte 0x5f, 0x43, 0x28, 0x63, 0x29, 0x20 + 1778: 4c410063 beq x2,x4,1c38 <_start-0x7fffe3c8> + 177c: 4f4c .2byte 0x4f4c + 177e: 5a495343 .4byte 0x5a495343 + 1782: 2045 .2byte 0x2045 + 1784: 3031 .2byte 0x3031 + 1786: 3030 .2byte 0x3030 + 1788: 0030 .2byte 0x30 + 178a: 5450 .2byte 0x5450 + 178c: 4452 .2byte 0x4452 + 178e: 4649 .2byte 0x4649 + 1790: 5f46 .2byte 0x5f46 + 1792: 414d .2byte 0x414d + 1794: 0058 .2byte 0x58 + 1796: 455a4953 .4byte 0x455a4953 + 179a: 4d5f 5841 5f00 .byte 0x5f, 0x4d, 0x41, 0x58, 0x00, 0x5f + 17a0: 475f 4343 415f .byte 0x5f, 0x47, 0x43, 0x43, 0x5f, 0x41 + 17a6: 4f54 .2byte 0x4f54 + 17a8: 494d .2byte 0x494d + 17aa: 4f4c5f43 .4byte 0x4f4c5f43 + 17ae: 474e .2byte 0x474e + 17b0: 4c5f 434f 5f4b .byte 0x5f, 0x4c, 0x4f, 0x43, 0x4b, 0x5f + 17b6: 5246 .2byte 0x5246 + 17b8: 4545 .2byte 0x4545 + 17ba: 3120 .2byte 0x3120 + 17bc: 5f00 .2byte 0x5f00 + 17be: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 + 17c4: 5f58 .2byte 0x5f58 + 17c6: 4944 .2byte 0x4944 + 17c8: 205f5f47 .4byte 0x205f5f47 + 17cc: 3531 .2byte 0x3531 + 17ce: 5f00 .2byte 0x5f00 + 17d0: 635f 7070 645f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x64 + 17d6: 6365 .2byte 0x6365 + 17d8: 746c .2byte 0x746c + 17da: 7079 .2byte 0x7079 + 17dc: 2065 .2byte 0x2065 + 17de: 3032 .2byte 0x3032 + 17e0: 3730 .2byte 0x3730 + 17e2: 3730 .2byte 0x3730 + 17e4: 004c .2byte 0x4c + 17e6: 5f5f 4c46 3354 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x33 + 17ec: 5832 .2byte 0x5832 + 17ee: 4d5f 4e41 5f54 .byte 0x5f, 0x4d, 0x41, 0x4e, 0x54, 0x5f + 17f4: 4944 .2byte 0x4944 + 17f6: 205f5f47 .4byte 0x205f5f47 + 17fa: 3335 .2byte 0x3335 + 17fc: 5f00 .2byte 0x5f00 + 17fe: 445f 5045 4552 .byte 0x5f, 0x44, 0x45, 0x50, 0x52, 0x45 + 1804: 45544143 .4byte 0x45544143 + 1808: 2044 .2byte 0x2044 + 180a: 0031 .2byte 0x31 + 180c: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f + 1812: 656e6567 .4byte 0x656e6567 + 1816: 6972 .2byte 0x6972 + 1818: 616c5f63 bge x24,x22,1e36 <_start-0x7fffe1ca> + 181c: 626d .2byte 0x626d + 181e: 6164 .2byte 0x6164 + 1820: 30322073 .4byte 0x30322073 + 1824: 3331 .2byte 0x3331 + 1826: 3430 .2byte 0x3430 + 1828: 004c .2byte 0x4c + 182a: 4955 .2byte 0x4955 + 182c: 544e .2byte 0x544e + 182e: 465f 5341 3354 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x33 + 1834: 5f32 .2byte 0x5f32 + 1836: 414d .2byte 0x414d + 1838: 2058 .2byte 0x2058 + 183a: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 + 1840: 465f 5341 3354 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x33 + 1846: 5f32 .2byte 0x5f32 + 1848: 414d .2byte 0x414d + 184a: 5f58 .2byte 0x5f58 + 184c: 005f 5f5f 4843 .byte 0x5f, 0x00, 0x5f, 0x5f, 0x43, 0x48 + 1852: 5241 .2byte 0x5241 + 1854: 425f 5449 5f5f .byte 0x5f, 0x42, 0x49, 0x54, 0x5f, 0x5f + 185a: 3820 .2byte 0x3820 + 185c: 5f00 .2byte 0x5f00 + 185e: 635f 7070 6e5f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x6e + 1864: 696d6473 .4byte 0x696d6473 + 1868: 3220 .2byte 0x3220 + 186a: 3030 .2byte 0x3030 + 186c: 3038 .2byte 0x3038 + 186e: 4c39 .2byte 0x4c39 + 1870: 5f00 .2byte 0x5f00 + 1872: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 + 1878: 5f58 .2byte 0x5f58 + 187a: 5349 .2byte 0x5349 + 187c: 495f 4345 365f .byte 0x5f, 0x49, 0x45, 0x43, 0x5f, 0x36 + 1882: 3530 .2byte 0x3530 + 1884: 3935 .2byte 0x3935 + 1886: 5f5f 3220 5f00 .byte 0x5f, 0x5f, 0x20, 0x32, 0x00, 0x5f + 188c: 495f 544e 5450 .byte 0x5f, 0x49, 0x4e, 0x54, 0x50, 0x54 + 1892: 5f52 .2byte 0x5f52 + 1894: 54444957 .4byte 0x54444957 + 1898: 5f48 .2byte 0x5f48 + 189a: 205f 3233 5f00 .byte 0x5f, 0x20, 0x33, 0x32, 0x00, 0x5f + 18a0: 555f 4e49 5f54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x5f + 18a6: 454c .2byte 0x454c + 18a8: 5341 .2byte 0x5341 + 18aa: 3854 .2byte 0x3854 + 18ac: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f + 18b2: 205f 6e75 6973 .byte 0x5f, 0x20, 0x75, 0x6e, 0x73, 0x69 + 18b8: 64656e67 .4byte 0x64656e67 + 18bc: 6320 .2byte 0x6320 + 18be: 6168 .2byte 0x6168 + 18c0: 0072 .2byte 0x72 + 18c2: 5f5f 4946 494e .byte 0x5f, 0x5f, 0x46, 0x49, 0x4e, 0x49 + 18c8: 4554 .2byte 0x4554 + 18ca: 4d5f 5441 5f48 .byte 0x5f, 0x4d, 0x41, 0x54, 0x48, 0x5f + 18d0: 594c4e4f .4byte 0x594c4e4f + 18d4: 5f5f 3020 4900 .byte 0x5f, 0x5f, 0x20, 0x30, 0x00, 0x49 + 18da: 544e .2byte 0x544e + 18dc: 3436 .2byte 0x3436 + 18de: 4d5f 5841 5f20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x5f + 18e4: 495f 544e 3436 .byte 0x5f, 0x49, 0x4e, 0x54, 0x36, 0x34 + 18ea: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 18f0: 5f00 .2byte 0x5f00 + 18f2: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 + 18f8: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 18fe: 3120 .2byte 0x3120 + 1900: 372e .2byte 0x372e + 1902: 3739 .2byte 0x3739 + 1904: 3936 .2byte 0x3936 + 1906: 34333133 .4byte 0x34333133 + 190a: 3638 .2byte 0x3638 + 190c: 3332 .2byte 0x3332 + 190e: 3531 .2byte 0x3531 + 1910: 31383037 lui x0,0x31383 + 1914: 3534 .2byte 0x3534 + 1916: 3732 .2byte 0x3732 + 1918: 3234 .2byte 0x3234 + 191a: 31333733 .4byte 0x31333733 + 191e: 33343037 lui x0,0x33343 + 1922: 3735 .2byte 0x3735 + 1924: 2b65 .2byte 0x2b65 + 1926: 46383033 .4byte 0x46383033 + 192a: 3436 .2byte 0x3436 + 192c: 5f00 .2byte 0x5f00 + 192e: 445f 4c42 4d5f .byte 0x5f, 0x44, 0x42, 0x4c, 0x5f, 0x4d + 1934: 5841 .2byte 0x5841 + 1936: 5f5f 6420 756f .byte 0x5f, 0x5f, 0x20, 0x64, 0x6f, 0x75 + 193c: 6c62 .2byte 0x6c62 + 193e: 2865 .2byte 0x2865 + 1940: 2e31 .2byte 0x2e31 + 1942: 36373937 lui x18,0x36373 + 1946: 3339 .2byte 0x3339 + 1948: 3331 .2byte 0x3331 + 194a: 3834 .2byte 0x3834 + 194c: 3236 .2byte 0x3236 + 194e: 37353133 .4byte 0x37353133 + 1952: 3830 .2byte 0x3830 + 1954: 3431 .2byte 0x3431 + 1956: 3235 .2byte 0x3235 + 1958: 33323437 lui x8,0x33323 + 195c: 37313337 lui x6,0x37313 + 1960: 3430 .2byte 0x3430 + 1962: 65373533 .4byte 0x65373533 + 1966: 3830332b .4byte 0x3830332b + 196a: 294c .2byte 0x294c + 196c: 4900 .2byte 0x4900 + 196e: 544e .2byte 0x544e + 1970: 3631 .2byte 0x3631 + 1972: 4d5f 4e49 2820 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x20, 0x28 + 1978: 492d .2byte 0x492d + 197a: 544e .2byte 0x544e + 197c: 3631 .2byte 0x3631 + 197e: 4d5f 5841 2d20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x2d + 1984: 3120 .2byte 0x3120 + 1986: 0029 .2byte 0x29 + 1988: 4e49 .2byte 0x4e49 + 198a: 5f54 .2byte 0x5f54 + 198c: 4146 .2byte 0x4146 + 198e: 36315453 .4byte 0x36315453 + 1992: 4d5f 4e49 2820 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x20, 0x28 + 1998: 492d .2byte 0x492d + 199a: 544e .2byte 0x544e + 199c: 465f 5341 3154 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x31 + 19a2: 5f36 .2byte 0x5f36 + 19a4: 414d .2byte 0x414d + 19a6: 2058 .2byte 0x2058 + 19a8: 202d .2byte 0x202d + 19aa: 2931 .2byte 0x2931 + 19ac: 4900 .2byte 0x4900 + 19ae: 544e .2byte 0x544e + 19b0: 5450 .2byte 0x5450 + 19b2: 5f52 .2byte 0x5f52 + 19b4: 494d .2byte 0x494d + 19b6: 204e .2byte 0x204e + 19b8: 2d28 .2byte 0x2d28 + 19ba: 4e49 .2byte 0x4e49 + 19bc: 5054 .2byte 0x5054 + 19be: 5254 .2byte 0x5254 + 19c0: 4d5f 5841 2d20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x2d + 19c6: 3120 .2byte 0x3120 + 19c8: 0029 .2byte 0x29 + 19ca: 4e49 .2byte 0x4e49 + 19cc: 5f54 .2byte 0x5f54 + 19ce: 454c .2byte 0x454c + 19d0: 5341 .2byte 0x5341 + 19d2: 3854 .2byte 0x3854 + 19d4: 4d5f 4e49 5f00 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x00, 0x5f + 19da: 475f 4343 415f .byte 0x5f, 0x47, 0x43, 0x43, 0x5f, 0x41 + 19e0: 4f54 .2byte 0x4f54 + 19e2: 494d .2byte 0x494d + 19e4: 45545f43 .4byte 0x45545f43 + 19e8: 415f5453 .4byte 0x415f5453 + 19ec: 444e .2byte 0x444e + 19ee: 535f 5445 545f .byte 0x5f, 0x53, 0x45, 0x54, 0x5f, 0x54 + 19f4: 5552 .2byte 0x5552 + 19f6: 5645 .2byte 0x5645 + 19f8: 4c41 .2byte 0x4c41 + 19fa: 3120 .2byte 0x3120 + 19fc: 5f00 .2byte 0x5f00 + 19fe: 415f 4f54 494d .byte 0x5f, 0x41, 0x54, 0x4f, 0x4d, 0x49 + 1a04: 4f435f43 .4byte 0x4f435f43 + 1a08: 534e .2byte 0x534e + 1a0a: 4d55 .2byte 0x4d55 + 1a0c: 2045 .2byte 0x2045 + 1a0e: 0031 .2byte 0x31 + 1a10: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f + 1a16: 6574 .2byte 0x6574 + 1a18: 706d .2byte 0x706d + 1a1a: 616c .2byte 0x616c + 1a1c: 6574 .2byte 0x6574 + 1a1e: 615f 7475 206f .byte 0x5f, 0x61, 0x75, 0x74, 0x6f, 0x20 + 1a24: 3032 .2byte 0x3032 + 1a26: 3631 .2byte 0x3631 + 1a28: 3630 .2byte 0x3630 + 1a2a: 004c .2byte 0x4c + 1a2c: 5f5f 4c46 3654 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x36 + 1a32: 5834 .2byte 0x5834 + 1a34: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 1a3a: 3120 .2byte 0x3120 + 1a3c: 312e .2byte 0x312e + 1a3e: 3938 .2byte 0x3938 + 1a40: 34313337 lui x6,0x34313 + 1a44: 3539 .2byte 0x3539 + 1a46: 32373533 .4byte 0x32373533 + 1a4a: 36373133 .4byte 0x36373133 + 1a4e: 3035 .2byte 0x3035 + 1a50: 3538 .2byte 0x3538 + 1a52: 33393537 lui x10,0x33393 + 1a56: 3632 .2byte 0x3632 + 1a58: 3236 .2byte 0x3236 + 1a5a: 3038 .2byte 0x3038 + 1a5c: 3730 .2byte 0x3730 + 1a5e: 3230 .2byte 0x3230 + 1a60: 2b65 .2byte 0x2b65 + 1a62: 3934 .2byte 0x3934 + 1a64: 36463233 .4byte 0x36463233 + 1a68: 7834 .2byte 0x7834 + 1a6a: 5f00 .2byte 0x5f00 + 1a6c: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 + 1a72: 5f58 .2byte 0x5f58 + 1a74: 494d .2byte 0x494d + 1a76: 5f4e .2byte 0x5f4e + 1a78: 205f 2e32 3232 .byte 0x5f, 0x20, 0x32, 0x2e, 0x32, 0x32 + 1a7e: 3035 .2byte 0x3035 + 1a80: 35383337 lui x6,0x35383 + 1a84: 3538 .2byte 0x3538 + 1a86: 3730 .2byte 0x3730 + 1a88: 3032 .2byte 0x3032 + 1a8a: 3331 .2byte 0x3331 + 1a8c: 3338 .2byte 0x3338 + 1a8e: 3930 .2byte 0x3930 + 1a90: 3230 .2byte 0x3230 + 1a92: 31373233 .4byte 0x31373233 + 1a96: 32333337 lui x6,0x32333 + 1a9a: 3034 .2byte 0x3034 + 1a9c: 3034 .2byte 0x3034 + 1a9e: 6536 .2byte 0x6536 + 1aa0: 332d .2byte 0x332d + 1aa2: 3830 .2byte 0x3830 + 1aa4: 3346 .2byte 0x3346 + 1aa6: 7832 .2byte 0x7832 + 1aa8: 5f00 .2byte 0x5f00 + 1aaa: 5f434347 .4byte 0x5f434347 + 1aae: 50415257 .4byte 0x50415257 + 1ab2: 535f 4454 4e49 .byte 0x5f, 0x53, 0x54, 0x44, 0x49, 0x4e + 1ab8: 5f54 .2byte 0x5f54 + 1aba: 2048 .2byte 0x2048 + 1abc: 5f00 .2byte 0x5f00 + 1abe: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 + 1ac4: 5f58 .2byte 0x5f58 + 1ac6: 4148 .2byte 0x4148 + 1ac8: 4e495f53 .4byte 0x4e495f53 + 1acc: 4946 .2byte 0x4946 + 1ace: 494e .2byte 0x494e + 1ad0: 5954 .2byte 0x5954 + 1ad2: 5f5f 3120 5f00 .byte 0x5f, 0x5f, 0x20, 0x31, 0x00, 0x5f + 1ad8: 495f 544e 3631 .byte 0x5f, 0x49, 0x4e, 0x54, 0x31, 0x36 + 1ade: 435f 6328 2029 .byte 0x5f, 0x43, 0x28, 0x63, 0x29, 0x20 + 1ae4: 5f5f0063 beq x30,x21,20c4 <_start-0x7fffdf3c> + 1ae8: 5f434347 .4byte 0x5f434347 + 1aec: 4148 .2byte 0x4148 + 1aee: 4556 .2byte 0x4556 + 1af0: 445f 4157 4652 .byte 0x5f, 0x44, 0x57, 0x41, 0x52, 0x46 + 1af6: 5f32 .2byte 0x5f32 + 1af8: 5f494643 .4byte 0x5f494643 + 1afc: 5341 .2byte 0x5341 + 1afe: 204d .2byte 0x204d + 1b00: 0031 .2byte 0x31 + 1b02: 5f5f 4953 455a .byte 0x5f, 0x5f, 0x53, 0x49, 0x5a, 0x45 + 1b08: 465f464f .4byte 0x465f464f + 1b0c: 4f4c .2byte 0x4f4c + 1b0e: 5441 .2byte 0x5441 + 1b10: 5f5f 3420 5f00 .byte 0x5f, 0x5f, 0x20, 0x34, 0x00, 0x5f + 1b16: 495f 544e 465f .byte 0x5f, 0x49, 0x4e, 0x54, 0x5f, 0x46 + 1b1c: 5341 .2byte 0x5341 + 1b1e: 3354 .2byte 0x3354 + 1b20: 5f32 .2byte 0x5f32 + 1b22: 414d .2byte 0x414d + 1b24: 5f58 .2byte 0x5f58 + 1b26: 205f 7830 6637 .byte 0x5f, 0x20, 0x30, 0x78, 0x37, 0x66 + 1b2c: 6666 .2byte 0x6666 + 1b2e: 6666 .2byte 0x6666 + 1b30: 6666 .2byte 0x6666 + 1b32: 5f00 .2byte 0x5f00 + 1b34: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 + 1b3a: 5f58 .2byte 0x5f58 + 1b3c: 4148 .2byte 0x4148 + 1b3e: 55515f53 .4byte 0x55515f53 + 1b42: 4549 .2byte 0x4549 + 1b44: 5f54 .2byte 0x5f54 + 1b46: 414e .2byte 0x414e + 1b48: 5f4e .2byte 0x5f4e + 1b4a: 205f 0031 5f5f .byte 0x5f, 0x20, 0x31, 0x00, 0x5f, 0x5f + 1b50: 4c46 .2byte 0x4c46 + 1b52: 5f54 .2byte 0x5f54 + 1b54: 4148 .2byte 0x4148 + 1b56: 4e495f53 .4byte 0x4e495f53 + 1b5a: 4946 .2byte 0x4946 + 1b5c: 494e .2byte 0x494e + 1b5e: 5954 .2byte 0x5954 + 1b60: 5f5f 3120 5f00 .byte 0x5f, 0x5f, 0x20, 0x31, 0x00, 0x5f + 1b66: 535f 4454 5f43 .byte 0x5f, 0x53, 0x54, 0x44, 0x43, 0x5f + 1b6c: 205f 0031 5f5f .byte 0x5f, 0x20, 0x31, 0x00, 0x5f, 0x5f + 1b72: 455a4953 .4byte 0x455a4953 + 1b76: 4c5f464f .4byte 0x4c5f464f + 1b7a: 5f474e4f .4byte 0x5f474e4f + 1b7e: 205f 0034 5f5f .byte 0x5f, 0x20, 0x34, 0x00, 0x5f, 0x5f + 1b84: 4244 .2byte 0x4244 + 1b86: 5f4c .2byte 0x5f4c + 1b88: 414d .2byte 0x414d + 1b8a: 5f58 .2byte 0x5f58 + 1b8c: 5845 .2byte 0x5845 + 1b8e: 5f50 .2byte 0x5f50 + 1b90: 205f 3031 3432 .byte 0x5f, 0x20, 0x31, 0x30, 0x32, 0x34 + 1b96: 5f00 .2byte 0x5f00 + 1b98: 355a .2byte 0x355a + 1b9a: 6c61 .2byte 0x6c61 + 1b9c: 6f6c .2byte 0x6f6c + 1b9e: 5f006963 bltu x0,x16,2190 <_start-0x7fffde70> + 1ba2: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 + 1ba8: 4d5f 4e49 5f5f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x5f + 1bae: 3120 .2byte 0x3120 + 1bb0: 312e .2byte 0x312e + 1bb2: 39343537 lui x10,0x39343 + 1bb6: 3334 .2byte 0x3334 + 1bb8: 3035 .2byte 0x3035 + 1bba: 3238 .2byte 0x3238 + 1bbc: 3232 .2byte 0x3232 + 1bbe: 3738 .2byte 0x3738 + 1bc0: 3035 .2byte 0x3035 + 1bc2: 38363937 lui x18,0x38363 + 1bc6: 35363337 lui x6,0x35363 + 1bca: 32323733 .4byte 0x32323733 + 1bce: 3232 .2byte 0x3232 + 1bd0: 3534 .2byte 0x3534 + 1bd2: 3836 .2byte 0x3836 + 1bd4: 2d65 .2byte 0x2d65 + 1bd6: 33463833 .4byte 0x33463833 + 1bda: 0032 .2byte 0x32 + 1bdc: 4955 .2byte 0x4955 + 1bde: 544e .2byte 0x544e + 1be0: 5450 .2byte 0x5450 + 1be2: 5f52 .2byte 0x5f52 + 1be4: 414d .2byte 0x414d + 1be6: 2058 .2byte 0x2058 + 1be8: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 + 1bee: 5450 .2byte 0x5450 + 1bf0: 5f52 .2byte 0x5f52 + 1bf2: 414d .2byte 0x414d + 1bf4: 5f58 .2byte 0x5f58 + 1bf6: 005f 5f5f 4c46 .byte 0x5f, 0x00, 0x5f, 0x5f, 0x46, 0x4c + 1bfc: 3654 .2byte 0x3654 + 1bfe: 5834 .2byte 0x5834 + 1c00: 4d5f 4e41 5f54 .byte 0x5f, 0x4d, 0x41, 0x4e, 0x54, 0x5f + 1c06: 4944 .2byte 0x4944 + 1c08: 205f5f47 .4byte 0x205f5f47 + 1c0c: 3131 .2byte 0x3131 + 1c0e: 5f5f0033 .4byte 0x5f5f0033 + 1c12: 5f707063 bgeu x0,x23,21f2 <_start-0x7fffde0e> + 1c16: 7672 .2byte 0x7672 + 1c18: 6c61 .2byte 0x6c61 + 1c1a: 6575 .2byte 0x6575 + 1c1c: 725f 6665 7265 .byte 0x5f, 0x72, 0x65, 0x66, 0x65, 0x72 + 1c22: 6e65 .2byte 0x6e65 + 1c24: 20736563 bltu x6,x7,1e2e <_start-0x7fffe1d2> + 1c28: 3032 .2byte 0x3032 + 1c2a: 3630 .2byte 0x3630 + 1c2c: 3031 .2byte 0x3031 + 1c2e: 004c .2byte 0x4c + 1c30: 5f5f 4f4c 474e .byte 0x5f, 0x5f, 0x4c, 0x4f, 0x4e, 0x47 + 1c36: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 1c3c: 3020 .2byte 0x3020 + 1c3e: 3778 .2byte 0x3778 + 1c40: 6666 .2byte 0x6666 + 1c42: 6666 .2byte 0x6666 + 1c44: 6666 .2byte 0x6666 + 1c46: 4c66 .2byte 0x4c66 + 1c48: 5f00 .2byte 0x5f00 + 1c4a: 495f 544e 3631 .byte 0x5f, 0x49, 0x4e, 0x54, 0x31, 0x36 + 1c50: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 1c56: 3020 .2byte 0x3020 + 1c58: 3778 .2byte 0x3778 + 1c5a: 6666 .2byte 0x6666 + 1c5c: 0066 .2byte 0x66 + 1c5e: 5f5f 4353 4148 .byte 0x5f, 0x5f, 0x53, 0x43, 0x48, 0x41 + 1c64: 5f52 .2byte 0x5f52 + 1c66: 54444957 .4byte 0x54444957 + 1c6a: 5f48 .2byte 0x5f48 + 1c6c: 205f 0038 5f5f .byte 0x5f, 0x20, 0x38, 0x00, 0x5f, 0x5f + 1c72: 5f707063 bgeu x0,x23,2252 <_start-0x7fffddae> + 1c76: 6564 .2byte 0x6564 + 1c78: 79746c63 bltu x8,x23,2410 <_start-0x7fffdbf0> + 1c7c: 6570 .2byte 0x6570 + 1c7e: 615f 7475 206f .byte 0x5f, 0x61, 0x75, 0x74, 0x6f, 0x20 + 1c84: 3032 .2byte 0x3032 + 1c86: 3331 .2byte 0x3331 + 1c88: 3430 .2byte 0x3430 + 1c8a: 004c .2byte 0x4c + 1c8c: 5f5f 444c 4c42 .byte 0x5f, 0x5f, 0x4c, 0x44, 0x42, 0x4c + 1c92: 4d5f 4e49 315f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x31 + 1c98: 5f30 .2byte 0x5f30 + 1c9a: 5845 .2byte 0x5845 + 1c9c: 5f50 .2byte 0x5f50 + 1c9e: 205f 2d28 3934 .byte 0x5f, 0x20, 0x28, 0x2d, 0x34, 0x39 + 1ca4: 00293133 sltu x2,x18,x2 + 1ca8: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f + 1cae: 6c61 .2byte 0x6c61 + 1cb0: 6769 .2byte 0x6769 + 1cb2: 656e .2byte 0x656e + 1cb4: 5f64 .2byte 0x5f64 + 1cb6: 656e .2byte 0x656e + 1cb8: 30322077 .4byte 0x30322077 + 1cbc: 3631 .2byte 0x3631 + 1cbe: 3630 .2byte 0x3630 + 1cc0: 004c .2byte 0x4c + 1cc2: 6c61 .2byte 0x6c61 + 1cc4: 6f6c .2byte 0x6f6c + 1cc6: 5f007063 bgeu x0,x16,22a6 <_start-0x7fffdd5a> + 1cca: 535f 5a49 4f45 .byte 0x5f, 0x53, 0x49, 0x5a, 0x45, 0x4f + 1cd0: 5f46 .2byte 0x5f46 + 1cd2: 4f44 .2byte 0x4f44 + 1cd4: 4255 .2byte 0x4255 + 1cd6: 454c .2byte 0x454c + 1cd8: 5f5f 3820 5f00 .byte 0x5f, 0x5f, 0x20, 0x38, 0x00, 0x5f + 1cde: 475f 554e 5f43 .byte 0x5f, 0x47, 0x4e, 0x55, 0x43, 0x5f + 1ce4: 4150 .2byte 0x4150 + 1ce6: 4354 .2byte 0x4354 + 1ce8: 4c48 .2byte 0x4c48 + 1cea: 5645 .2byte 0x5645 + 1cec: 4c45 .2byte 0x4c45 + 1cee: 5f5f 3020 4700 .byte 0x5f, 0x5f, 0x20, 0x30, 0x00, 0x47 + 1cf4: 554e .2byte 0x554e + 1cf6: 4320 .2byte 0x4320 + 1cf8: 37312b2b .4byte 0x37312b2b + 1cfc: 3120 .2byte 0x3120 + 1cfe: 2e32 .2byte 0x2e32 + 1d00: 2e32 .2byte 0x2e32 + 1d02: 2030 .2byte 0x2030 + 1d04: 6d2d .2byte 0x6d2d + 1d06: 6261 .2byte 0x6261 + 1d08: 3d69 .2byte 0x3d69 + 1d0a: 6c69 .2byte 0x6c69 + 1d0c: 3370 .2byte 0x3370 + 1d0e: 2032 .2byte 0x2032 + 1d10: 6d2d .2byte 0x6d2d + 1d12: 7574 .2byte 0x7574 + 1d14: 656e .2byte 0x656e + 1d16: 723d .2byte 0x723d + 1d18: 656b636f jal x6,b836e <_start-0x7ff47c92> + 1d1c: 2074 .2byte 0x2074 + 1d1e: 6d2d .2byte 0x6d2d + 1d20: 7369 .2byte 0x7369 + 1d22: 2d61 .2byte 0x2d61 + 1d24: 63657073 .4byte 0x63657073 + 1d28: 323d .2byte 0x323d + 1d2a: 3130 .2byte 0x3130 + 1d2c: 3139 .2byte 0x3139 + 1d2e: 3132 .2byte 0x3132 + 1d30: 6d2d2033 .4byte 0x6d2d2033 + 1d34: 7261 .2byte 0x7261 + 1d36: 723d6863 bltu x26,x3,2466 <_start-0x7fffdb9a> + 1d3a: 3376 .2byte 0x3376 + 1d3c: 6932 .2byte 0x6932 + 1d3e: 2d20 .2byte 0x2d20 + 1d40: 672d2067 .4byte 0x672d2067 + 1d44: 33626467 .4byte 0x33626467 + 1d48: 2d20 .2byte 0x2d20 + 1d4a: 2d20304f .4byte 0x2d20304f + 1d4e: 6666 .2byte 0x6666 + 1d50: 6572 .2byte 0x6572 + 1d52: 7365 .2byte 0x7365 + 1d54: 6174 .2byte 0x6174 + 1d56: 646e .2byte 0x646e + 1d58: 6e69 .2byte 0x6e69 + 1d5a: 662d2067 .4byte 0x662d2067 + 1d5e: 6f6e .2byte 0x6f6e + 1d60: 702d .2byte 0x702d + 1d62: 6369 .2byte 0x6369 + 1d64: 5500 .2byte 0x5500 + 1d66: 4e49 .2byte 0x4e49 + 1d68: 5f54 .2byte 0x5f54 + 1d6a: 454c .2byte 0x454c + 1d6c: 5341 .2byte 0x5341 + 1d6e: 3654 .2byte 0x3654 + 1d70: 5f34 .2byte 0x5f34 + 1d72: 414d .2byte 0x414d + 1d74: 2058 .2byte 0x2058 + 1d76: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 + 1d7c: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 + 1d82: 3436 .2byte 0x3436 + 1d84: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 1d8a: 5f00 .2byte 0x5f00 + 1d8c: 475f 5858 455f .byte 0x5f, 0x47, 0x58, 0x58, 0x5f, 0x45 + 1d92: 5058 .2byte 0x5058 + 1d94: 5245 .2byte 0x5245 + 1d96: 4d49 .2byte 0x4d49 + 1d98: 4e45 .2byte 0x4e45 + 1d9a: 4154 .2byte 0x4154 + 1d9c: 5f4c .2byte 0x5f4c + 1d9e: 30585843 .4byte 0x30585843 + 1da2: 5f58 .2byte 0x5f58 + 1da4: 205f 0031 5f5f .byte 0x5f, 0x20, 0x31, 0x00, 0x5f, 0x5f + 1daa: 544e4957 .4byte 0x544e4957 + 1dae: 4d5f 4e49 5f5f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x5f + 1db4: 3020 .2byte 0x3020 + 1db6: 0055 .2byte 0x55 + 1db8: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f + 1dbe: 6176 .2byte 0x6176 + 1dc0: 6972 .2byte 0x6972 + 1dc2: 6461 .2byte 0x6461 + 1dc4: 6369 .2byte 0x6369 + 1dc6: 745f 6d65 6c70 .byte 0x5f, 0x74, 0x65, 0x6d, 0x70, 0x6c + 1dcc: 7461 .2byte 0x7461 + 1dce: 7365 .2byte 0x7365 + 1dd0: 3220 .2byte 0x3220 + 1dd2: 3030 .2byte 0x3030 + 1dd4: 4c343037 lui x0,0x4c343 + 1dd8: 4900 .2byte 0x4900 + 1dda: 544e .2byte 0x544e + 1ddc: 465f 5341 3354 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x33 + 1de2: 5f32 .2byte 0x5f32 + 1de4: 494d .2byte 0x494d + 1de6: 004e .2byte 0x4e + 1de8: 5f5f 4c46 5f54 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x5f + 1dee: 4f4e .2byte 0x4f4e + 1df0: 4d52 .2byte 0x4d52 + 1df2: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 1df8: 3320 .2byte 0x3320 + 1dfa: 342e .2byte 0x342e + 1dfc: 3230 .2byte 0x3230 + 1dfe: 3238 .2byte 0x3238 + 1e00: 36363433 .4byte 0x36363433 + 1e04: 32353833 .4byte 0x32353833 + 1e08: 3838 .2byte 0x3838 + 1e0a: 3935 .2byte 0x3935 + 1e0c: 3138 .2byte 0x3138 + 1e0e: 3731 .2byte 0x3731 + 1e10: 3430 .2byte 0x3430 + 1e12: 3831 .2byte 0x3831 + 1e14: 34383433 .4byte 0x34383433 + 1e18: 3135 .2byte 0x3135 + 1e1a: 3936 .2byte 0x3936 + 1e1c: 3532 .2byte 0x3532 + 1e1e: 2b65 .2byte 0x2b65 + 1e20: 00463833 sltu x16,x12,x4 + 1e24: 5f5f 5453 4344 .byte 0x5f, 0x5f, 0x53, 0x54, 0x44, 0x43 + 1e2a: 555f 4654 315f .byte 0x5f, 0x55, 0x54, 0x46, 0x5f, 0x31 + 1e30: 5f36 .2byte 0x5f36 + 1e32: 205f 0031 5f5f .byte 0x5f, 0x20, 0x31, 0x00, 0x5f, 0x5f + 1e38: 5f707063 bgeu x0,x23,2418 <_start-0x7fffdbe8> + 1e3c: 6e69 .2byte 0x6e69 + 1e3e: 696c .2byte 0x696c + 1e40: 656e .2byte 0x656e + 1e42: 765f 7261 6169 .byte 0x5f, 0x76, 0x61, 0x72, 0x69, 0x61 + 1e48: 6c62 .2byte 0x6c62 + 1e4a: 7365 .2byte 0x7365 + 1e4c: 3220 .2byte 0x3220 + 1e4e: 3130 .2byte 0x3130 + 1e50: 3036 .2byte 0x3036 + 1e52: 4c36 .2byte 0x4c36 + 1e54: 5f00 .2byte 0x5f00 + 1e56: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 + 1e5c: 495f 5f53 4549 .byte 0x5f, 0x49, 0x53, 0x5f, 0x49, 0x45 + 1e62: 30365f43 .4byte 0x30365f43 + 1e66: 3535 .2byte 0x3535 + 1e68: 5f39 .2byte 0x5f39 + 1e6a: 205f 0032 4955 .byte 0x5f, 0x20, 0x32, 0x00, 0x55, 0x49 + 1e70: 544e .2byte 0x544e + 1e72: 465f 5341 3354 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x33 + 1e78: 5f32 .2byte 0x5f32 + 1e7a: 414d .2byte 0x414d + 1e7c: 0058 .2byte 0x58 + 1e7e: 4955 .2byte 0x4955 + 1e80: 544e .2byte 0x544e + 1e82: 435f3233 .4byte 0x435f3233 + 1e86: 6328 .2byte 0x6328 + 1e88: 2029 .2byte 0x2029 + 1e8a: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 + 1e90: 435f3233 .4byte 0x435f3233 + 1e94: 6328 .2byte 0x6328 + 1e96: 0029 .2byte 0x29 + 1e98: 4e49 .2byte 0x4e49 + 1e9a: 5f54 .2byte 0x5f54 + 1e9c: 454c .2byte 0x454c + 1e9e: 5341 .2byte 0x5341 + 1ea0: 3854 .2byte 0x3854 + 1ea2: 4d5f 4e49 2820 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x20, 0x28 + 1ea8: 492d .2byte 0x492d + 1eaa: 544e .2byte 0x544e + 1eac: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 + 1eb2: 5f38 .2byte 0x5f38 + 1eb4: 414d .2byte 0x414d + 1eb6: 2058 .2byte 0x2058 + 1eb8: 202d .2byte 0x202d + 1eba: 2931 .2byte 0x2931 + 1ebc: 5f00 .2byte 0x5f00 + 1ebe: 4c5f 4244 5f4c .byte 0x5f, 0x4c, 0x44, 0x42, 0x4c, 0x5f + 1ec4: 4148 .2byte 0x4148 + 1ec6: 4e495f53 .4byte 0x4e495f53 + 1eca: 4946 .2byte 0x4946 + 1ecc: 494e .2byte 0x494e + 1ece: 5954 .2byte 0x5954 + 1ed0: 5f5f 3120 5f00 .byte 0x5f, 0x5f, 0x20, 0x31, 0x00, 0x5f + 1ed6: 475f 4343 495f .byte 0x5f, 0x47, 0x43, 0x43, 0x5f, 0x49 + 1edc: 4345 .2byte 0x4345 + 1ede: 355f 3935 435f .byte 0x5f, 0x35, 0x35, 0x39, 0x5f, 0x43 + 1ee4: 4c504d4f .4byte 0x4c504d4f + 1ee8: 5845 .2byte 0x5845 + 1eea: 3020 .2byte 0x3020 + 1eec: 5f00 .2byte 0x5f00 + 1eee: 555f 4e49 3354 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x33 + 1ef4: 5f32 .2byte 0x5f32 + 1ef6: 414d .2byte 0x414d + 1ef8: 5f58 .2byte 0x5f58 + 1efa: 205f 7830 6666 .byte 0x5f, 0x20, 0x30, 0x78, 0x66, 0x66 + 1f00: 6666 .2byte 0x6666 + 1f02: 6666 .2byte 0x6666 + 1f04: 6666 .2byte 0x6666 + 1f06: 4c55 .2byte 0x4c55 + 1f08: 5f00 .2byte 0x5f00 + 1f0a: 635f 7070 675f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x67 + 1f10: 6175 .2byte 0x6175 + 1f12: 6172 .2byte 0x6172 + 1f14: 746e .2byte 0x746e + 1f16: 6565 .2byte 0x6565 + 1f18: 5f64 .2byte 0x5f64 + 1f1a: 79706f63 bltu x0,x23,26b8 <_start-0x7fffd948> + 1f1e: 655f 696c 6973 .byte 0x5f, 0x65, 0x6c, 0x69, 0x73, 0x69 + 1f24: 32206e6f jal x28,8246 <_start-0x7fff7dba> + 1f28: 3130 .2byte 0x3130 + 1f2a: 3036 .2byte 0x3036 + 1f2c: 4c36 .2byte 0x4c36 + 1f2e: 5f00 .2byte 0x5f00 + 1f30: 4c5f 4244 5f4c .byte 0x5f, 0x4c, 0x44, 0x42, 0x4c, 0x5f + 1f36: 4f4e .2byte 0x4f4e + 1f38: 4d52 .2byte 0x4d52 + 1f3a: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 1f40: 3120 .2byte 0x3120 + 1f42: 312e .2byte 0x312e + 1f44: 3938 .2byte 0x3938 + 1f46: 34313337 lui x6,0x34313 + 1f4a: 3539 .2byte 0x3539 + 1f4c: 32373533 .4byte 0x32373533 + 1f50: 36373133 .4byte 0x36373133 + 1f54: 3035 .2byte 0x3035 + 1f56: 3538 .2byte 0x3538 + 1f58: 33393537 lui x10,0x33393 + 1f5c: 3632 .2byte 0x3632 + 1f5e: 3236 .2byte 0x3236 + 1f60: 3038 .2byte 0x3038 + 1f62: 3730 .2byte 0x3730 + 1f64: 3230 .2byte 0x3230 + 1f66: 2b65 .2byte 0x2b65 + 1f68: 3934 .2byte 0x3934 + 1f6a: 004c3233 sltu x4,x24,x4 + 1f6e: 5f5f 4953 455a .byte 0x5f, 0x5f, 0x53, 0x49, 0x5a, 0x45 + 1f74: 575f464f .4byte 0x575f464f + 1f78: 52414843 .4byte 0x52414843 + 1f7c: 545f 5f5f 3420 .byte 0x5f, 0x54, 0x5f, 0x5f, 0x20, 0x34 + 1f82: 4900 .2byte 0x4900 + 1f84: 544e .2byte 0x544e + 1f86: 465f 5341 3854 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x38 + 1f8c: 4d5f 4e49 5f00 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x00, 0x5f + 1f92: 465f 544c 3231 .byte 0x5f, 0x46, 0x4c, 0x54, 0x31, 0x32 + 1f98: 5f38 .2byte 0x5f38 + 1f9a: 494d .2byte 0x494d + 1f9c: 5f4e .2byte 0x5f4e + 1f9e: 3031 .2byte 0x3031 + 1fa0: 455f 5058 5f5f .byte 0x5f, 0x45, 0x58, 0x50, 0x5f, 0x5f + 1fa6: 2820 .2byte 0x2820 + 1fa8: 342d .2byte 0x342d + 1faa: 3339 .2byte 0x3339 + 1fac: 2931 .2byte 0x2931 + 1fae: 5f00 .2byte 0x5f00 + 1fb0: 465f 4f4c 5441 .byte 0x5f, 0x46, 0x4c, 0x4f, 0x41, 0x54 + 1fb6: 575f 524f 5f44 .byte 0x5f, 0x57, 0x4f, 0x52, 0x44, 0x5f + 1fbc: 4544524f .4byte 0x4544524f + 1fc0: 5f52 .2byte 0x5f52 + 1fc2: 205f 5f5f 524f .byte 0x5f, 0x20, 0x5f, 0x5f, 0x4f, 0x52 + 1fc8: 4544 .2byte 0x4544 + 1fca: 5f52 .2byte 0x5f52 + 1fcc: 494c .2byte 0x494c + 1fce: 5454 .2byte 0x5454 + 1fd0: 454c .2byte 0x454c + 1fd2: 455f 444e 4149 .byte 0x5f, 0x45, 0x4e, 0x44, 0x49, 0x41 + 1fd8: 5f4e .2byte 0x5f4e + 1fda: 005f 5f5f 4953 .byte 0x5f, 0x00, 0x5f, 0x5f, 0x53, 0x49 + 1fe0: 455a .2byte 0x455a + 1fe2: 575f 4449 4854 .byte 0x5f, 0x57, 0x49, 0x44, 0x54, 0x48 + 1fe8: 5f5f 3320 0032 .byte 0x5f, 0x5f, 0x20, 0x33, 0x32, 0x00 + 1fee: 4e49 .2byte 0x4e49 + 1ff0: 5054 .2byte 0x5054 + 1ff2: 5254 .2byte 0x5254 + 1ff4: 4d5f 4e49 5f00 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x00, 0x5f + 1ffa: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 + 2000: 445f 4e45 524f .byte 0x5f, 0x44, 0x45, 0x4e, 0x4f, 0x52 + 2006: 5f4d .2byte 0x5f4d + 2008: 494d .2byte 0x494d + 200a: 5f4e .2byte 0x5f4e + 200c: 205f 2e31 3034 .byte 0x5f, 0x20, 0x31, 0x2e, 0x34, 0x30 + 2012: 3231 .2byte 0x3231 + 2014: 3839 .2byte 0x3839 + 2016: 3634 .2byte 0x3634 + 2018: 3334 .2byte 0x3334 + 201a: 3432 .2byte 0x3432 + 201c: 3138 .2byte 0x3138 + 201e: 30373037 lui x0,0x30373 + 2022: 3239 .2byte 0x3239 + 2024: 39323733 .4byte 0x39323733 + 2028: 3835 .2byte 0x3835 + 202a: 39383233 .4byte 0x39383233 + 202e: 3139 .2byte 0x3139 + 2030: 3136 .2byte 0x3136 + 2032: 342d6533 .4byte 0x342d6533 + 2036: 4635 .2byte 0x4635 + 2038: 5f003233 .4byte 0x5f003233 + 203c: 535f 4749 415f .byte 0x5f, 0x53, 0x49, 0x47, 0x5f, 0x41 + 2042: 4f54 .2byte 0x4f54 + 2044: 494d .2byte 0x494d + 2046: 494d5f43 .4byte 0x494d5f43 + 204a: 5f4e .2byte 0x5f4e + 204c: 205f 2d28 5f5f .byte 0x5f, 0x20, 0x28, 0x2d, 0x5f, 0x5f + 2052: 5f474953 .4byte 0x5f474953 + 2056: 5441 .2byte 0x5441 + 2058: 43494d4f .4byte 0x43494d4f + 205c: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 2062: 2d20 .2byte 0x2d20 + 2064: 3120 .2byte 0x3120 + 2066: 0029 .2byte 0x29 + 2068: 4955 .2byte 0x4955 + 206a: 544e .2byte 0x544e + 206c: 435f3233 .4byte 0x435f3233 + 2070: 5500 .2byte 0x5500 + 2072: 4e49 .2byte 0x4e49 + 2074: 4d54 .2byte 0x4d54 + 2076: 5841 .2byte 0x5841 + 2078: 435f 5f00 4c5f .byte 0x5f, 0x43, 0x00, 0x5f, 0x5f, 0x4c + 207e: 5f474e4f .4byte 0x5f474e4f + 2082: 54444957 .4byte 0x54444957 + 2086: 5f48 .2byte 0x5f48 + 2088: 205f 3233 5f00 .byte 0x5f, 0x20, 0x33, 0x32, 0x00, 0x5f + 208e: 415f 4f54 494d .byte 0x5f, 0x41, 0x54, 0x4f, 0x4d, 0x49 + 2094: 43415f43 .4byte 0x43415f43 + 2098: 5551 .2byte 0x5551 + 209a: 5249 .2byte 0x5249 + 209c: 2045 .2byte 0x2045 + 209e: 0032 .2byte 0x32 + 20a0: 5f5f 4843 5241 .byte 0x5f, 0x5f, 0x43, 0x48, 0x41, 0x52 + 20a6: 545f3233 .4byte 0x545f3233 + 20aa: 5059 .2byte 0x5059 + 20ac: 5f45 .2byte 0x5f45 + 20ae: 205f 6f6c 676e .byte 0x5f, 0x20, 0x6c, 0x6f, 0x6e, 0x67 + 20b4: 7520 .2byte 0x7520 + 20b6: 736e .2byte 0x736e + 20b8: 6769 .2byte 0x6769 + 20ba: 656e .2byte 0x656e + 20bc: 2064 .2byte 0x2064 + 20be: 6e69 .2byte 0x6e69 + 20c0: 0074 .2byte 0x74 + 20c2: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 + 20c8: 3436 .2byte 0x3436 + 20ca: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 20d0: 3020 .2byte 0x3020 + 20d2: 6678 .2byte 0x6678 + 20d4: 6666 .2byte 0x6666 + 20d6: 6666 .2byte 0x6666 + 20d8: 6666 .2byte 0x6666 + 20da: 6666 .2byte 0x6666 + 20dc: 6666 .2byte 0x6666 + 20de: 6666 .2byte 0x6666 + 20e0: 6666 .2byte 0x6666 + 20e2: 5566 .2byte 0x5566 + 20e4: 4c4c .2byte 0x4c4c + 20e6: 5f00 .2byte 0x5f00 + 20e8: 565f 5245 4953 .byte 0x5f, 0x56, 0x45, 0x52, 0x53, 0x49 + 20ee: 5f5f4e4f .4byte 0x5f5f4e4f + 20f2: 2220 .2byte 0x2220 + 20f4: 3231 .2byte 0x3231 + 20f6: 322e .2byte 0x322e + 20f8: 302e .2byte 0x302e + 20fa: 0022 .2byte 0x22 + 20fc: 4955 .2byte 0x4955 + 20fe: 544e .2byte 0x544e + 2100: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 + 2106: 3631 .2byte 0x3631 + 2108: 4d5f 5841 5f20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x5f + 210e: 555f 4e49 5f54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x5f + 2114: 454c .2byte 0x454c + 2116: 5341 .2byte 0x5341 + 2118: 3154 .2byte 0x3154 + 211a: 5f36 .2byte 0x5f36 + 211c: 414d .2byte 0x414d + 211e: 5f58 .2byte 0x5f58 + 2120: 005f 5f5f 7063 .byte 0x5f, 0x00, 0x5f, 0x5f, 0x63, 0x70 + 2126: 5f70 .2byte 0x5f70 + 2128: 6f66 .2byte 0x6f66 + 212a: 646c .2byte 0x646c + 212c: 655f 7078 6572 .byte 0x5f, 0x65, 0x78, 0x70, 0x72, 0x65 + 2132: 6f697373 .4byte 0x6f697373 + 2136: 736e .2byte 0x736e + 2138: 3220 .2byte 0x3220 + 213a: 3130 .2byte 0x3130 + 213c: 3036 .2byte 0x3036 + 213e: 49004c33 .4byte 0x49004c33 + 2142: 544e .2byte 0x544e + 2144: 3436 .2byte 0x3436 + 2146: 4d5f 4e49 2820 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x20, 0x28 + 214c: 492d .2byte 0x492d + 214e: 544e .2byte 0x544e + 2150: 3436 .2byte 0x3436 + 2152: 4d5f 5841 2d20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x2d + 2158: 3120 .2byte 0x3120 + 215a: 0029 .2byte 0x29 + 215c: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 + 2162: 5f38 .2byte 0x5f38 + 2164: 29632843 .4byte 0x29632843 + 2168: 6320 .2byte 0x6320 + 216a: 5f00 .2byte 0x5f00 + 216c: 555f 4e49 5f54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x5f + 2172: 454c .2byte 0x454c + 2174: 5341 .2byte 0x5341 + 2176: 3354 .2byte 0x3354 + 2178: 5f32 .2byte 0x5f32 + 217a: 5954 .2byte 0x5954 + 217c: 4550 .2byte 0x4550 + 217e: 5f5f 6c20 6e6f .byte 0x5f, 0x5f, 0x20, 0x6c, 0x6f, 0x6e + 2184: 6e752067 .4byte 0x6e752067 + 2188: 6e676973 .4byte 0x6e676973 + 218c: 6465 .2byte 0x6465 + 218e: 6920 .2byte 0x6920 + 2190: 746e .2byte 0x746e + 2192: 5f00 .2byte 0x5f00 + 2194: 555f 4e49 4d54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x4d + 219a: 5841 .2byte 0x5841 + 219c: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f + 21a2: 205f 6f6c 676e .byte 0x5f, 0x20, 0x6c, 0x6f, 0x6e, 0x67 + 21a8: 6c20 .2byte 0x6c20 + 21aa: 20676e6f jal x28,783b0 <_start-0x7ff87c50> + 21ae: 6e75 .2byte 0x6e75 + 21b0: 6e676973 .4byte 0x6e676973 + 21b4: 6465 .2byte 0x6465 + 21b6: 6920 .2byte 0x6920 + 21b8: 746e .2byte 0x746e + 21ba: 4900 .2byte 0x4900 + 21bc: 544e .2byte 0x544e + 21be: 465f 5341 3654 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x36 + 21c4: 5f34 .2byte 0x5f34 + 21c6: 414d .2byte 0x414d + 21c8: 2058 .2byte 0x2058 + 21ca: 5f5f 4e49 5f54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x5f + 21d0: 4146 .2byte 0x4146 + 21d2: 34365453 .4byte 0x34365453 + 21d6: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 21dc: 5f00 .2byte 0x5f00 + 21de: 635f 7070 655f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x65 + 21e4: 756e .2byte 0x756e + 21e6: 656d .2byte 0x656d + 21e8: 6172 .2byte 0x6172 + 21ea: 6f74 .2byte 0x6f74 + 21ec: 5f72 .2byte 0x5f72 + 21ee: 7461 .2byte 0x7461 + 21f0: 7274 .2byte 0x7274 + 21f2: 6269 .2byte 0x6269 + 21f4: 7475 .2byte 0x7475 + 21f6: 7365 .2byte 0x7365 + 21f8: 3220 .2byte 0x3220 + 21fa: 3130 .2byte 0x3130 + 21fc: 3134 .2byte 0x3134 + 21fe: 4c31 .2byte 0x4c31 + 2200: 5f00 .2byte 0x5f00 + 2202: 535f 4749 415f .byte 0x5f, 0x53, 0x49, 0x47, 0x5f, 0x41 + 2208: 4f54 .2byte 0x4f54 + 220a: 494d .2byte 0x494d + 220c: 49575f43 .4byte 0x49575f43 + 2210: 5444 .2byte 0x5444 + 2212: 5f48 .2byte 0x5f48 + 2214: 205f 3233 5500 .byte 0x5f, 0x20, 0x33, 0x32, 0x00, 0x55 + 221a: 4e49 .2byte 0x4e49 + 221c: 3654 .2byte 0x3654 + 221e: 5f34 .2byte 0x5f34 + 2220: 29632843 .4byte 0x29632843 + 2224: 5f20 .2byte 0x5f20 + 2226: 555f 4e49 3654 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x36 + 222c: 5f34 .2byte 0x5f34 + 222e: 29632843 .4byte 0x29632843 + 2232: 5f00 .2byte 0x5f00 + 2234: 635f 7070 725f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x72 + 223a: 6e75 .2byte 0x6e75 + 223c: 6974 .2byte 0x6974 + 223e: 656d .2byte 0x656d + 2240: 615f 7272 7961 .byte 0x5f, 0x61, 0x72, 0x72, 0x61, 0x79 + 2246: 39312073 .4byte 0x39312073 + 224a: 3738 .2byte 0x3738 + 224c: 3231 .2byte 0x3231 + 224e: 004c .2byte 0x4c + 2250: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f + 2256: 7472 .2byte 0x7472 + 2258: 6974 .2byte 0x6974 + 225a: 3120 .2byte 0x3120 + 225c: 3939 .2byte 0x3939 + 225e: 4c313137 lui x2,0x4c313 + 2262: 5f00 .2byte 0x5f00 + 2264: 535f 5248 5f54 .byte 0x5f, 0x53, 0x48, 0x52, 0x54, 0x5f + 226a: 414d .2byte 0x414d + 226c: 5f58 .2byte 0x5f58 + 226e: 205f 7830 6637 .byte 0x5f, 0x20, 0x30, 0x78, 0x37, 0x66 + 2274: 6666 .2byte 0x6666 + 2276: 5f00 .2byte 0x5f00 + 2278: 635f 7070 6e5f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x6e + 227e: 79746e6f jal x28,49214 <_start-0x7ffb6dec> + 2282: 6570 .2byte 0x6570 + 2284: 745f 6d65 6c70 .byte 0x5f, 0x74, 0x65, 0x6d, 0x70, 0x6c + 228a: 7461 .2byte 0x7461 + 228c: 5f65 .2byte 0x5f65 + 228e: 6170 .2byte 0x6170 + 2290: 6172 .2byte 0x6172 + 2292: 656d .2byte 0x656d + 2294: 6574 .2byte 0x6574 + 2296: 5f72 .2byte 0x5f72 + 2298: 7561 .2byte 0x7561 + 229a: 6f74 .2byte 0x6f74 + 229c: 3220 .2byte 0x3220 + 229e: 3130 .2byte 0x3130 + 22a0: 3036 .2byte 0x3036 + 22a2: 4c36 .2byte 0x4c36 + 22a4: 5f00 .2byte 0x5f00 + 22a6: 4f5f 4452 5245 .byte 0x5f, 0x4f, 0x52, 0x44, 0x45, 0x52 + 22ac: 505f 5044 455f .byte 0x5f, 0x50, 0x44, 0x50, 0x5f, 0x45 + 22b2: 444e .2byte 0x444e + 22b4: 4149 .2byte 0x4149 + 22b6: 5f4e .2byte 0x5f4e + 22b8: 205f 3433 3231 .byte 0x5f, 0x20, 0x33, 0x34, 0x31, 0x32 + 22be: 5f00 .2byte 0x5f00 + 22c0: 555f 4e49 5f54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x5f + 22c6: 454c .2byte 0x454c + 22c8: 5341 .2byte 0x5341 + 22ca: 3154 .2byte 0x3154 + 22cc: 5f36 .2byte 0x5f36 + 22ce: 5954 .2byte 0x5954 + 22d0: 4550 .2byte 0x4550 + 22d2: 5f5f 7320 6f68 .byte 0x5f, 0x5f, 0x20, 0x73, 0x68, 0x6f + 22d8: 7472 .2byte 0x7472 + 22da: 7520 .2byte 0x7520 + 22dc: 736e .2byte 0x736e + 22de: 6769 .2byte 0x6769 + 22e0: 656e .2byte 0x656e + 22e2: 2064 .2byte 0x2064 + 22e4: 6e69 .2byte 0x6e69 + 22e6: 0074 .2byte 0x74 + 22e8: 5f5f 4c46 5f54 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x5f + 22ee: 4544 .2byte 0x4544 + 22f0: 414d4943 .4byte 0x414d4943 + 22f4: 5f4c .2byte 0x5f4c + 22f6: 4944 .2byte 0x4944 + 22f8: 205f5f47 .4byte 0x205f5f47 + 22fc: 0039 .2byte 0x39 + 22fe: 5f5f 4e49 3354 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x33 + 2304: 5f32 .2byte 0x5f32 + 2306: 414d .2byte 0x414d + 2308: 5f58 .2byte 0x5f58 + 230a: 205f 7830 6637 .byte 0x5f, 0x20, 0x30, 0x78, 0x37, 0x66 + 2310: 6666 .2byte 0x6666 + 2312: 6666 .2byte 0x6666 + 2314: 6666 .2byte 0x6666 + 2316: 004c .2byte 0x4c + 2318: 5f5f 444c 4c42 .byte 0x5f, 0x5f, 0x4c, 0x44, 0x42, 0x4c + 231e: 4d5f 4e49 455f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x45 + 2324: 5058 .2byte 0x5058 + 2326: 5f5f 2820 312d .byte 0x5f, 0x5f, 0x20, 0x28, 0x2d, 0x31 + 232c: 3336 .2byte 0x3336 + 232e: 3138 .2byte 0x3138 + 2330: 0029 .2byte 0x29 + 2332: 5f5f 4957 544e .byte 0x5f, 0x5f, 0x57, 0x49, 0x4e, 0x54 + 2338: 575f 4449 4854 .byte 0x5f, 0x57, 0x49, 0x44, 0x54, 0x48 + 233e: 5f5f 3320 0032 .byte 0x5f, 0x5f, 0x20, 0x33, 0x32, 0x00 + 2344: 5f5f 4c46 3654 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x36 + 234a: 5834 .2byte 0x5834 + 234c: 4d5f 4e49 5f5f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x5f + 2352: 3320 .2byte 0x3320 + 2354: 332e .2byte 0x332e + 2356: 3236 .2byte 0x3236 + 2358: 3031 .2byte 0x3031 + 235a: 33343133 .4byte 0x33343133 + 235e: 3131 .2byte 0x3131 + 2360: 3032 .2byte 0x3032 + 2362: 3339 .2byte 0x3339 + 2364: 3035 .2byte 0x3035 + 2366: 3236 .2byte 0x3236 + 2368: 3236 .2byte 0x3236 + 236a: 3736 .2byte 0x3736 + 236c: 37313837 lui x16,0x37313 + 2370: 37313233 .4byte 0x37313233 + 2374: 3235 .2byte 0x3235 + 2376: 3036 .2byte 0x3036 + 2378: 2d65 .2byte 0x2d65 + 237a: 3934 .2byte 0x3934 + 237c: 36463233 .4byte 0x36463233 + 2380: 7834 .2byte 0x7834 + 2382: 4900 .2byte 0x4900 + 2384: 544e .2byte 0x544e + 2386: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 + 238c: 3436 .2byte 0x3436 + 238e: 4d5f 4e49 2820 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x20, 0x28 + 2394: 492d .2byte 0x492d + 2396: 544e .2byte 0x544e + 2398: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 + 239e: 3436 .2byte 0x3436 + 23a0: 4d5f 5841 2d20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x2d + 23a6: 3120 .2byte 0x3120 + 23a8: 0029 .2byte 0x29 + 23aa: 4e49 .2byte 0x4e49 + 23ac: 3154 .2byte 0x3154 + 23ae: 5f36 .2byte 0x5f36 + 23b0: 494d .2byte 0x494d + 23b2: 004e .2byte 0x4e + 23b4: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 + 23ba: 5450 .2byte 0x5450 + 23bc: 5f52 .2byte 0x5f52 + 23be: 414d .2byte 0x414d + 23c0: 5f58 .2byte 0x5f58 + 23c2: 205f 7830 6666 .byte 0x5f, 0x20, 0x30, 0x78, 0x66, 0x66 + 23c8: 6666 .2byte 0x6666 + 23ca: 6666 .2byte 0x6666 + 23cc: 6666 .2byte 0x6666 + 23ce: 0055 .2byte 0x55 + 23d0: 5f5f 4c46 3354 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x33 + 23d6: 5f32 .2byte 0x5f32 + 23d8: 5045 .2byte 0x5045 + 23da: 4f4c4953 .4byte 0x4f4c4953 + 23de: 5f4e .2byte 0x5f4e + 23e0: 205f 2e31 3931 .byte 0x5f, 0x20, 0x31, 0x2e, 0x31, 0x39 + 23e6: 3032 .2byte 0x3032 + 23e8: 3239 .2byte 0x3239 + 23ea: 3938 .2byte 0x3938 + 23ec: 3535 .2byte 0x3535 + 23ee: 3730 .2byte 0x3730 + 23f0: 3138 .2byte 0x3138 + 23f2: 3532 .2byte 0x3532 + 23f4: 3030 .2byte 0x3030 + 23f6: 3030 .2byte 0x3030 + 23f8: 3030 .2byte 0x3030 + 23fa: 3030 .2byte 0x3030 + 23fc: 3030 .2byte 0x3030 + 23fe: 3030 .2byte 0x3030 + 2400: 3030 .2byte 0x3030 + 2402: 3030 .2byte 0x3030 + 2404: 3030 .2byte 0x3030 + 2406: 6530 .2byte 0x6530 + 2408: 372d .2byte 0x372d + 240a: 3346 .2byte 0x3346 + 240c: 0032 .2byte 0x32 + 240e: 4e49 .2byte 0x4e49 + 2410: 5f54 .2byte 0x5f54 + 2412: 4146 .2byte 0x4146 + 2414: 34365453 .4byte 0x34365453 + 2418: 4d5f 4e49 2820 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x20, 0x28 + 241e: 492d .2byte 0x492d + 2420: 544e .2byte 0x544e + 2422: 465f 5341 3654 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x36 + 2428: 5f34 .2byte 0x5f34 + 242a: 414d .2byte 0x414d + 242c: 2058 .2byte 0x2058 + 242e: 202d .2byte 0x202d + 2430: 2931 .2byte 0x2931 + 2432: 6100 .2byte 0x6100 + 2434: 6c6c .2byte 0x6c6c + 2436: 5f00636f jal x6,8a26 <_start-0x7fff75da> + 243a: 475f 5858 415f .byte 0x5f, 0x47, 0x58, 0x58, 0x5f, 0x41 + 2440: 4942 .2byte 0x4942 + 2442: 565f 5245 4953 .byte 0x5f, 0x56, 0x45, 0x52, 0x53, 0x49 + 2448: 31204e4f .4byte 0x31204e4f + 244c: 3130 .2byte 0x3130 + 244e: 4e490037 lui x0,0x4e490 + 2452: 3854 .2byte 0x3854 + 2454: 435f 6328 2029 .byte 0x5f, 0x43, 0x28, 0x63, 0x29, 0x20 + 245a: 5f5f 4e49 3854 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x38 + 2460: 435f 6328 0029 .byte 0x5f, 0x43, 0x28, 0x63, 0x29, 0x00 + 2466: 5f5f 4e49 3354 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x33 + 246c: 5f32 .2byte 0x5f32 + 246e: 5954 .2byte 0x5954 + 2470: 4550 .2byte 0x4550 + 2472: 5f5f 6c20 6e6f .byte 0x5f, 0x5f, 0x20, 0x6c, 0x6f, 0x6e + 2478: 6e692067 .4byte 0x6e692067 + 247c: 0074 .2byte 0x74 + 247e: 5f5f 4c46 3354 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x33 + 2484: 5832 .2byte 0x5832 + 2486: 4d5f 4e49 315f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x31 + 248c: 5f30 .2byte 0x5f30 + 248e: 5845 .2byte 0x5845 + 2490: 5f50 .2byte 0x5f50 + 2492: 205f 2d28 3033 .byte 0x5f, 0x20, 0x28, 0x2d, 0x33, 0x30 + 2498: 49002937 lui x18,0x49002 + 249c: 544e .2byte 0x544e + 249e: 3436 .2byte 0x3436 + 24a0: 435f 6328 2029 .byte 0x5f, 0x43, 0x28, 0x63, 0x29, 0x20 + 24a6: 5f5f 4e49 3654 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x36 + 24ac: 5f34 .2byte 0x5f34 + 24ae: 29632843 .4byte 0x29632843 + 24b2: 5f00 .2byte 0x5f00 + 24b4: 635f 7070 615f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x61 + 24ba: 65726767 .4byte 0x65726767 + 24be: 65746167 .4byte 0x65746167 + 24c2: 625f 7361 7365 .byte 0x5f, 0x62, 0x61, 0x73, 0x65, 0x73 + 24c8: 3220 .2byte 0x3220 + 24ca: 3130 .2byte 0x3130 + 24cc: 3036 .2byte 0x3036 + 24ce: 5f004c33 .4byte 0x5f004c33 + 24d2: 475f 554e 5f47 .byte 0x5f, 0x47, 0x4e, 0x55, 0x47, 0x5f + 24d8: 205f 3231 5f00 .byte 0x5f, 0x20, 0x31, 0x32, 0x00, 0x5f + 24de: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 + 24e4: 5f58 .2byte 0x5f58 + 24e6: 414d .2byte 0x414d + 24e8: 5f58 .2byte 0x5f58 + 24ea: 3031 .2byte 0x3031 + 24ec: 455f 5058 5f5f .byte 0x5f, 0x45, 0x58, 0x50, 0x5f, 0x5f + 24f2: 3420 .2byte 0x3420 + 24f4: 3339 .2byte 0x3339 + 24f6: 0032 .2byte 0x32 + 24f8: 5f5f 4c46 3354 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x33 + 24fe: 5832 .2byte 0x5832 + 2500: 4d5f 4e49 455f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x45 + 2506: 5058 .2byte 0x5058 + 2508: 5f5f 2820 312d .byte 0x5f, 0x5f, 0x20, 0x28, 0x2d, 0x31 + 250e: 3230 .2byte 0x3230 + 2510: 2931 .2byte 0x2931 + 2512: 5500 .2byte 0x5500 + 2514: 4e49 .2byte 0x4e49 + 2516: 5f54 .2byte 0x5f54 + 2518: 4146 .2byte 0x4146 + 251a: 34365453 .4byte 0x34365453 + 251e: 4d5f 5841 6900 .byte 0x5f, 0x4d, 0x41, 0x58, 0x00, 0x69 + 2524: 746e .2byte 0x746e + 2526: 3631 .2byte 0x3631 + 2528: 745f 5f00 555f .byte 0x5f, 0x74, 0x00, 0x5f, 0x5f, 0x55 + 252e: 4e49 .2byte 0x4e49 + 2530: 5f54 .2byte 0x5f54 + 2532: 454c .2byte 0x454c + 2534: 5341 .2byte 0x5341 + 2536: 3354 .2byte 0x3354 + 2538: 5f32 .2byte 0x5f32 + 253a: 414d .2byte 0x414d + 253c: 5f58 .2byte 0x5f58 + 253e: 205f 7830 6666 .byte 0x5f, 0x20, 0x30, 0x78, 0x66, 0x66 + 2544: 6666 .2byte 0x6666 + 2546: 6666 .2byte 0x6666 + 2548: 6666 .2byte 0x6666 + 254a: 4c55 .2byte 0x4c55 + 254c: 5000 .2byte 0x5000 + 254e: 5254 .2byte 0x5254 + 2550: 4944 .2byte 0x4944 + 2552: 4646 .2byte 0x4646 + 2554: 4d5f 5841 5f20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x5f + 255a: 505f 5254 4944 .byte 0x5f, 0x50, 0x54, 0x52, 0x44, 0x49 + 2560: 4646 .2byte 0x4646 + 2562: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 2568: 5f00 .2byte 0x5f00 + 256a: 4c5f 4244 5f4c .byte 0x5f, 0x4c, 0x44, 0x42, 0x4c, 0x5f + 2570: 4148 .2byte 0x4148 + 2572: 55515f53 .4byte 0x55515f53 + 2576: 4549 .2byte 0x4549 + 2578: 5f54 .2byte 0x5f54 + 257a: 414e .2byte 0x414e + 257c: 5f4e .2byte 0x5f4e + 257e: 205f 0031 5f5f .byte 0x5f, 0x20, 0x31, 0x00, 0x5f, 0x5f + 2584: 4e49 .2byte 0x4e49 + 2586: 3854 .2byte 0x3854 + 2588: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f + 258e: 205f 6973 6e67 .byte 0x5f, 0x20, 0x73, 0x69, 0x67, 0x6e + 2594: 6465 .2byte 0x6465 + 2596: 6320 .2byte 0x6320 + 2598: 6168 .2byte 0x6168 + 259a: 0072 .2byte 0x72 + 259c: 5f5f 4957 544e .byte 0x5f, 0x5f, 0x57, 0x49, 0x4e, 0x54 + 25a2: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 25a8: 3020 .2byte 0x3020 + 25aa: 6678 .2byte 0x6678 + 25ac: 6666 .2byte 0x6666 + 25ae: 6666 .2byte 0x6666 + 25b0: 6666 .2byte 0x6666 + 25b2: 5566 .2byte 0x5566 + 25b4: 5500 .2byte 0x5500 + 25b6: 4e49 .2byte 0x4e49 + 25b8: 4d54 .2byte 0x4d54 + 25ba: 5841 .2byte 0x5841 + 25bc: 4d5f 5841 5f00 .byte 0x5f, 0x4d, 0x41, 0x58, 0x00, 0x5f + 25c2: 445f 4345 455f .byte 0x5f, 0x44, 0x45, 0x43, 0x5f, 0x45 + 25c8: 4156 .2byte 0x4156 + 25ca: 5f4c .2byte 0x5f4c + 25cc: 454d .2byte 0x454d + 25ce: 4854 .2byte 0x4854 + 25d0: 5f5f444f .4byte 0x5f5f444f + 25d4: 3220 .2byte 0x3220 + 25d6: 7000 .2byte 0x7000 + 25d8: 7274 .2byte 0x7274 + 25da: 0031 .2byte 0x31 + 25dc: 7470 .2byte 0x7470 + 25de: 3272 .2byte 0x3272 + 25e0: 5f00 .2byte 0x5f00 + 25e2: 555f 4e49 5f54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x5f + 25e8: 4146 .2byte 0x4146 + 25ea: 34365453 .4byte 0x34365453 + 25ee: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 25f4: 3020 .2byte 0x3020 + 25f6: 6678 .2byte 0x6678 + 25f8: 6666 .2byte 0x6666 + 25fa: 6666 .2byte 0x6666 + 25fc: 6666 .2byte 0x6666 + 25fe: 6666 .2byte 0x6666 + 2600: 6666 .2byte 0x6666 + 2602: 6666 .2byte 0x6666 + 2604: 6666 .2byte 0x6666 + 2606: 5566 .2byte 0x5566 + 2608: 4c4c .2byte 0x4c4c + 260a: 5f00 .2byte 0x5f00 + 260c: 555f 4e49 5f54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x5f + 2612: 4146 .2byte 0x4146 + 2614: 32335453 .4byte 0x32335453 + 2618: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 261e: 3020 .2byte 0x3020 + 2620: 6678 .2byte 0x6678 + 2622: 6666 .2byte 0x6666 + 2624: 6666 .2byte 0x6666 + 2626: 6666 .2byte 0x6666 + 2628: 5566 .2byte 0x5566 + 262a: 5f00 .2byte 0x5f00 + 262c: 635f 7070 695f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x69 + 2632: 5f66 .2byte 0x5f66 + 2634: 736e6f63 bltu x28,x22,2d72 <_start-0x7fffd28e> + 2638: 6574 .2byte 0x6574 + 263a: 7078 .2byte 0x7078 + 263c: 2072 .2byte 0x2072 + 263e: 3032 .2byte 0x3032 + 2640: 3631 .2byte 0x3631 + 2642: 3630 .2byte 0x3630 + 2644: 004c .2byte 0x4c + 2646: 5f5f 4e49 3654 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x36 + 264c: 5f34 .2byte 0x5f34 + 264e: 29632843 .4byte 0x29632843 + 2652: 6320 .2byte 0x6320 + 2654: 2320 .2byte 0x2320 + 2656: 4c4c2023 sw x4,1216(x24) + 265a: 5f00 .2byte 0x5f00 + 265c: 465f 544c 3231 .byte 0x5f, 0x46, 0x4c, 0x54, 0x31, 0x32 + 2662: 5f38 .2byte 0x5f38 + 2664: 5045 .2byte 0x5045 + 2666: 4f4c4953 .4byte 0x4f4c4953 + 266a: 5f4e .2byte 0x5f4e + 266c: 205f 2e31 3239 .byte 0x5f, 0x20, 0x31, 0x2e, 0x39, 0x32 + 2672: 3935 .2byte 0x3935 + 2674: 3932 .2byte 0x3932 + 2676: 3439 .2byte 0x3439 + 2678: 3334 .2byte 0x3334 + 267a: 3738 .2byte 0x3738 + 267c: 3332 .2byte 0x3332 + 267e: 3835 .2byte 0x3835 + 2680: 3335 .2byte 0x3335 + 2682: 3530 .2byte 0x3530 + 2684: 3935 .2byte 0x3935 + 2686: 34393737 lui x14,0x34393 + 268a: 3532 .2byte 0x3532 + 268c: 3438 .2byte 0x3438 + 268e: 3239 .2byte 0x3239 + 2690: 65323337 lui x6,0x65323 + 2694: 332d .2byte 0x332d + 2696: 4634 .2byte 0x4634 + 2698: 3231 .2byte 0x3231 + 269a: 0038 .2byte 0x38 + 269c: 5f5f 6972 6373 .byte 0x5f, 0x5f, 0x72, 0x69, 0x73, 0x63 + 26a2: 5f76 .2byte 0x5f76 + 26a4: 2069 .2byte 0x2069 + 26a6: 3032 .2byte 0x3032 + 26a8: 3130 .2byte 0x3130 + 26aa: 3030 .2byte 0x3030 + 26ac: 0030 .2byte 0x30 + 26ae: 4955 .2byte 0x4955 + 26b0: 544e .2byte 0x544e + 26b2: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 + 26b8: 3631 .2byte 0x3631 + 26ba: 4d5f 5841 5f00 .byte 0x5f, 0x4d, 0x41, 0x58, 0x00, 0x5f + 26c0: 445f 4c42 4d5f .byte 0x5f, 0x44, 0x42, 0x4c, 0x5f, 0x4d + 26c6: 4e49 .2byte 0x4e49 + 26c8: 5f5f 6420 756f .byte 0x5f, 0x5f, 0x20, 0x64, 0x6f, 0x75 + 26ce: 6c62 .2byte 0x6c62 + 26d0: 2865 .2byte 0x2865 + 26d2: 2e32 .2byte 0x2e32 + 26d4: 3232 .2byte 0x3232 + 26d6: 3035 .2byte 0x3035 + 26d8: 35383337 lui x6,0x35383 + 26dc: 3538 .2byte 0x3538 + 26de: 3730 .2byte 0x3730 + 26e0: 3032 .2byte 0x3032 + 26e2: 3331 .2byte 0x3331 + 26e4: 3338 .2byte 0x3338 + 26e6: 3930 .2byte 0x3930 + 26e8: 3230 .2byte 0x3230 + 26ea: 31373233 .4byte 0x31373233 + 26ee: 32333337 lui x6,0x32333 + 26f2: 3034 .2byte 0x3034 + 26f4: 3034 .2byte 0x3034 + 26f6: 6536 .2byte 0x6536 + 26f8: 332d .2byte 0x332d + 26fa: 3830 .2byte 0x3830 + 26fc: 294c .2byte 0x294c + 26fe: 5f00 .2byte 0x5f00 + 2700: 535f 5a49 4f45 .byte 0x5f, 0x53, 0x49, 0x5a, 0x45, 0x4f + 2706: 5f46 .2byte 0x5f46 + 2708: 4f4c .2byte 0x4f4c + 270a: 474e .2byte 0x474e + 270c: 4c5f 4e4f 5f47 .byte 0x5f, 0x4c, 0x4f, 0x4e, 0x47, 0x5f + 2712: 205f 0038 4953 .byte 0x5f, 0x20, 0x38, 0x00, 0x53, 0x49 + 2718: 54415f47 .4byte 0x54415f47 + 271c: 43494d4f .4byte 0x43494d4f + 2720: 4d5f 4e49 5f00 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x00, 0x5f + 2726: 555f 4e49 3854 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x38 + 272c: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f + 2732: 205f 6e75 6973 .byte 0x5f, 0x20, 0x75, 0x6e, 0x73, 0x69 + 2738: 64656e67 .4byte 0x64656e67 + 273c: 6320 .2byte 0x6320 + 273e: 6168 .2byte 0x6168 + 2740: 0072 .2byte 0x72 + 2742: 5f5f 4853 5452 .byte 0x5f, 0x5f, 0x53, 0x48, 0x52, 0x54 + 2748: 575f 4449 4854 .byte 0x5f, 0x57, 0x49, 0x44, 0x54, 0x48 + 274e: 5f5f 3120 0036 .byte 0x5f, 0x5f, 0x20, 0x31, 0x36, 0x00 + 2754: 4955 .2byte 0x4955 + 2756: 544e .2byte 0x544e + 2758: 4d5f3233 .4byte 0x4d5f3233 + 275c: 5841 .2byte 0x5841 + 275e: 4900 .2byte 0x4900 + 2760: 544e .2byte 0x544e + 2762: 4d5f3233 .4byte 0x4d5f3233 + 2766: 5841 .2byte 0x5841 + 2768: 5f20 .2byte 0x5f20 + 276a: 495f 544e 3233 .byte 0x5f, 0x49, 0x4e, 0x54, 0x33, 0x32 + 2770: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 2776: 5f00 .2byte 0x5f00 + 2778: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 + 277e: 4e5f 524f 5f4d .byte 0x5f, 0x4e, 0x4f, 0x52, 0x4d, 0x5f + 2784: 414d .2byte 0x414d + 2786: 5f58 .2byte 0x5f58 + 2788: 205f 2e31 3937 .byte 0x5f, 0x20, 0x31, 0x2e, 0x37, 0x39 + 278e: 33393637 lui x12,0x33393 + 2792: 3331 .2byte 0x3331 + 2794: 3834 .2byte 0x3834 + 2796: 3236 .2byte 0x3236 + 2798: 37353133 .4byte 0x37353133 + 279c: 3830 .2byte 0x3830 + 279e: 3431 .2byte 0x3431 + 27a0: 3235 .2byte 0x3235 + 27a2: 33323437 lui x8,0x33323 + 27a6: 37313337 lui x6,0x37313 + 27aa: 3430 .2byte 0x3430 + 27ac: 65373533 .4byte 0x65373533 + 27b0: 3830332b .4byte 0x3830332b + 27b4: 3646 .2byte 0x3646 + 27b6: 0034 .2byte 0x34 + 27b8: 5f5f 4e49 5f54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x5f + 27be: 454c .2byte 0x454c + 27c0: 5341 .2byte 0x5341 + 27c2: 3654 .2byte 0x3654 + 27c4: 5f34 .2byte 0x5f34 + 27c6: 5954 .2byte 0x5954 + 27c8: 4550 .2byte 0x4550 + 27ca: 5f5f 6c20 6e6f .byte 0x5f, 0x5f, 0x20, 0x6c, 0x6f, 0x6e + 27d0: 6f6c2067 .4byte 0x6f6c2067 + 27d4: 676e .2byte 0x676e + 27d6: 6920 .2byte 0x6920 + 27d8: 746e .2byte 0x746e + 27da: 5f00 .2byte 0x5f00 + 27dc: 555f 4e49 3354 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x33 + 27e2: 5f32 .2byte 0x5f32 + 27e4: 5954 .2byte 0x5954 + 27e6: 4550 .2byte 0x4550 + 27e8: 5f5f 6c20 6e6f .byte 0x5f, 0x5f, 0x20, 0x6c, 0x6f, 0x6e + 27ee: 6e752067 .4byte 0x6e752067 + 27f2: 6e676973 .4byte 0x6e676973 + 27f6: 6465 .2byte 0x6465 + 27f8: 6920 .2byte 0x6920 + 27fa: 746e .2byte 0x746e + 27fc: 4900 .2byte 0x4900 + 27fe: 544e .2byte 0x544e + 2800: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 + 2806: 4d5f3233 .4byte 0x4d5f3233 + 280a: 4e49 .2byte 0x4e49 + 280c: 2820 .2byte 0x2820 + 280e: 492d .2byte 0x492d + 2810: 544e .2byte 0x544e + 2812: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 + 2818: 4d5f3233 .4byte 0x4d5f3233 + 281c: 5841 .2byte 0x5841 + 281e: 2d20 .2byte 0x2d20 + 2820: 3120 .2byte 0x3120 + 2822: 0029 .2byte 0x29 + 2824: 7470 .2byte 0x7470 + 2826: 5372 .2byte 0x5372 + 2828: 5f00 .2byte 0x5f00 + 282a: 535f 5a49 4f45 .byte 0x5f, 0x53, 0x49, 0x5a, 0x45, 0x4f + 2830: 5f46 .2byte 0x5f46 + 2832: 4f50 .2byte 0x4f50 + 2834: 4e49 .2byte 0x4e49 + 2836: 4554 .2byte 0x4554 + 2838: 5f52 .2byte 0x5f52 + 283a: 205f 0034 4357 .byte 0x5f, 0x20, 0x34, 0x00, 0x57, 0x43 + 2840: 4148 .2byte 0x4148 + 2842: 5f52 .2byte 0x5f52 + 2844: 414d .2byte 0x414d + 2846: 2058 .2byte 0x2058 + 2848: 5f5f 4357 4148 .byte 0x5f, 0x5f, 0x57, 0x43, 0x48, 0x41 + 284e: 5f52 .2byte 0x5f52 + 2850: 414d .2byte 0x414d + 2852: 5f58 .2byte 0x5f58 + 2854: 005f 4955 544e .byte 0x5f, 0x00, 0x55, 0x49, 0x4e, 0x54 + 285a: 3631 .2byte 0x3631 + 285c: 4d5f 5841 5f20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x5f + 2862: 555f 4e49 3154 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x31 + 2868: 5f36 .2byte 0x5f36 + 286a: 414d .2byte 0x414d + 286c: 5f58 .2byte 0x5f58 + 286e: 005f 5f5f 7063 .byte 0x5f, 0x00, 0x5f, 0x5f, 0x63, 0x70 + 2874: 5f70 .2byte 0x5f70 + 2876: 6e69 .2byte 0x6e69 + 2878: 7469 .2byte 0x7469 + 287a: 6169 .2byte 0x6169 + 287c: 696c .2byte 0x696c + 287e: 657a .2byte 0x657a + 2880: 5f72 .2byte 0x5f72 + 2882: 696c .2byte 0x696c + 2884: 20737473 .4byte 0x20737473 + 2888: 3032 .2byte 0x3032 + 288a: 3830 .2byte 0x3830 + 288c: 3630 .2byte 0x3630 + 288e: 004c .2byte 0x4c + 2890: 5f5f 4357 4148 .byte 0x5f, 0x5f, 0x57, 0x43, 0x48, 0x41 + 2896: 5f52 .2byte 0x5f52 + 2898: 414d .2byte 0x414d + 289a: 5f58 .2byte 0x5f58 + 289c: 205f 7830 6637 .byte 0x5f, 0x20, 0x30, 0x78, 0x37, 0x66 + 28a2: 6666 .2byte 0x6666 + 28a4: 6666 .2byte 0x6666 + 28a6: 6666 .2byte 0x6666 + 28a8: 5f00 .2byte 0x5f00 + 28aa: 635f 7070 645f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x64 + 28b0: 6465 .2byte 0x6465 + 28b2: 6375 .2byte 0x6375 + 28b4: 6974 .2byte 0x6974 + 28b6: 675f6e6f jal x28,f972a <_start-0x7ff068d6> + 28ba: 6975 .2byte 0x6975 + 28bc: 6564 .2byte 0x6564 + 28be: 30322073 .4byte 0x30322073 + 28c2: 3731 .2byte 0x3731 + 28c4: 3330 .2byte 0x3330 + 28c6: 004c .2byte 0x4c + 28c8: 5f5f 4e49 5f54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x5f + 28ce: 54444957 .4byte 0x54444957 + 28d2: 5f48 .2byte 0x5f48 + 28d4: 205f 3233 5f00 .byte 0x5f, 0x20, 0x33, 0x32, 0x00, 0x5f + 28da: 465f 544c 3231 .byte 0x5f, 0x46, 0x4c, 0x54, 0x31, 0x32 + 28e0: 5f38 .2byte 0x5f38 + 28e2: 4544 .2byte 0x4544 + 28e4: 414d4943 .4byte 0x414d4943 + 28e8: 5f4c .2byte 0x5f4c + 28ea: 4944 .2byte 0x4944 + 28ec: 205f5f47 .4byte 0x205f5f47 + 28f0: 5f003633 .4byte 0x5f003633 + 28f4: 555f 4e49 3654 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x36 + 28fa: 5f34 .2byte 0x5f34 + 28fc: 29632843 .4byte 0x29632843 + 2900: 6320 .2byte 0x6320 + 2902: 2320 .2byte 0x2320 + 2904: 4c552023 sw x5,1216(x10) # 333934c0 <_start-0x4cc6cb40> + 2908: 004c .2byte 0x4c + 290a: 5f5f 4544 4943 .byte 0x5f, 0x5f, 0x44, 0x45, 0x43, 0x49 + 2910: 414d .2byte 0x414d + 2912: 5f4c .2byte 0x5f4c + 2914: 4944 .2byte 0x4944 + 2916: 205f5f47 .4byte 0x205f5f47 + 291a: 6d003633 .4byte 0x6d003633 + 291e: 6961 .2byte 0x6961 + 2920: 006e .2byte 0x6e + 2922: 5f5f 4347 5f43 .byte 0x5f, 0x5f, 0x47, 0x43, 0x43, 0x5f + 2928: 534e4f43 .4byte 0x534e4f43 + 292c: 5254 .2byte 0x5254 + 292e: 4355 .2byte 0x4355 + 2930: 4954 .2byte 0x4954 + 2932: 4556 .2byte 0x4556 + 2934: 535f 5a49 2045 .byte 0x5f, 0x53, 0x49, 0x5a, 0x45, 0x20 + 293a: 5f003233 .4byte 0x5f003233 + 293e: 725f 7369 7663 .byte 0x5f, 0x72, 0x69, 0x73, 0x63, 0x76 + 2944: 665f 6f6c 7461 .byte 0x5f, 0x66, 0x6c, 0x6f, 0x61, 0x74 + 294a: 615f 6962 735f .byte 0x5f, 0x61, 0x62, 0x69, 0x5f, 0x73 + 2950: 2074666f jal x12,49356 <_start-0x7ffb6caa> + 2954: 0031 .2byte 0x31 + 2956: 5f5f 4347 5f43 .byte 0x5f, 0x5f, 0x47, 0x43, 0x43, 0x5f + 295c: 5441 .2byte 0x5441 + 295e: 43494d4f .4byte 0x43494d4f + 2962: 505f 494f 544e .byte 0x5f, 0x50, 0x4f, 0x49, 0x4e, 0x54 + 2968: 5245 .2byte 0x5245 + 296a: 4c5f 434f 5f4b .byte 0x5f, 0x4c, 0x4f, 0x43, 0x4b, 0x5f + 2970: 5246 .2byte 0x5246 + 2972: 4545 .2byte 0x4545 + 2974: 3120 .2byte 0x3120 + 2976: 5f00 .2byte 0x5f00 + 2978: 555f 4553 5f52 .byte 0x5f, 0x55, 0x53, 0x45, 0x52, 0x5f + 297e: 414c .2byte 0x414c + 2980: 4542 .2byte 0x4542 + 2982: 5f4c .2byte 0x5f4c + 2984: 5250 .2byte 0x5250 + 2986: 4645 .2byte 0x4645 + 2988: 5849 .2byte 0x5849 + 298a: 5f5f 0020 5f5f .byte 0x5f, 0x5f, 0x20, 0x00, 0x5f, 0x5f + 2990: 5f434347 .4byte 0x5f434347 + 2994: 5441 .2byte 0x5441 + 2996: 43494d4f .4byte 0x43494d4f + 299a: 435f 4148 3352 .byte 0x5f, 0x43, 0x48, 0x41, 0x52, 0x33 + 29a0: 5f32 .2byte 0x5f32 + 29a2: 5f54 .2byte 0x5f54 + 29a4: 4f4c .2byte 0x4f4c + 29a6: 465f4b43 .4byte 0x465f4b43 + 29aa: 4552 .2byte 0x4552 + 29ac: 2045 .2byte 0x2045 + 29ae: 0031 .2byte 0x31 + 29b0: 4955 .2byte 0x4955 + 29b2: 544e .2byte 0x544e + 29b4: 414d .2byte 0x414d + 29b6: 5f58 .2byte 0x5f58 + 29b8: 29632843 .4byte 0x29632843 + 29bc: 5f20 .2byte 0x5f20 + 29be: 555f 4e49 4d54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x4d + 29c4: 5841 .2byte 0x5841 + 29c6: 435f 6328 0029 .byte 0x5f, 0x43, 0x28, 0x63, 0x29, 0x00 + 29cc: 5f5f 4e49 4d54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x4d + 29d2: 5841 .2byte 0x5841 + 29d4: 435f 6328 2029 .byte 0x5f, 0x43, 0x28, 0x63, 0x29, 0x20 + 29da: 23232063 .4byte 0x23232063 + 29de: 4c20 .2byte 0x4c20 + 29e0: 004c .2byte 0x4c + 29e2: 5f5f 4953 455a .byte 0x5f, 0x5f, 0x53, 0x49, 0x5a, 0x45 + 29e8: 535f464f .4byte 0x535f464f + 29ec: 5a49 .2byte 0x5a49 + 29ee: 5f45 .2byte 0x5f45 + 29f0: 5f54 .2byte 0x5f54 + 29f2: 205f 0034 5f5f .byte 0x5f, 0x20, 0x34, 0x00, 0x5f, 0x5f + 29f8: 43445453 .4byte 0x43445453 + 29fc: 485f 534f 4554 .byte 0x5f, 0x48, 0x4f, 0x53, 0x54, 0x45 + 2a02: 5f44 .2byte 0x5f44 + 2a04: 205f 0030 4955 .byte 0x5f, 0x20, 0x30, 0x00, 0x55, 0x49 + 2a0a: 544e .2byte 0x544e + 2a0c: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 + 2a12: 5f38 .2byte 0x5f38 + 2a14: 414d .2byte 0x414d + 2a16: 0058 .2byte 0x58 + 2a18: 5f5f 4e49 5054 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x50 + 2a1e: 5254 .2byte 0x5254 + 2a20: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 2a26: 3020 .2byte 0x3020 + 2a28: 3778 .2byte 0x3778 + 2a2a: 6666 .2byte 0x6666 + 2a2c: 6666 .2byte 0x6666 + 2a2e: 6666 .2byte 0x6666 + 2a30: 0066 .2byte 0x66 + 2a32: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f + 2a38: 6874 .2byte 0x6874 + 2a3a: 6572 .2byte 0x6572 + 2a3c: 6461 .2byte 0x6461 + 2a3e: 65666173 .4byte 0x65666173 + 2a42: 735f 6174 6974 .byte 0x5f, 0x73, 0x74, 0x61, 0x74, 0x69 + 2a48: 6e695f63 bge x18,x6,3146 <_start-0x7fffceba> + 2a4c: 7469 .2byte 0x7469 + 2a4e: 3220 .2byte 0x3220 + 2a50: 3030 .2byte 0x3030 + 2a52: 3038 .2byte 0x3038 + 2a54: 4c36 .2byte 0x4c36 + 2a56: 5f00 .2byte 0x5f00 + 2a58: 635f 7070 6e5f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x6e + 2a5e: 6d61 .2byte 0x6d61 + 2a60: 7365 .2byte 0x7365 + 2a62: 6170 .2byte 0x6170 + 2a64: 615f6563 bltu x30,x21,306e <_start-0x7fffcf92> + 2a68: 7474 .2byte 0x7474 + 2a6a: 6972 .2byte 0x6972 + 2a6c: 7562 .2byte 0x7562 + 2a6e: 6574 .2byte 0x6574 + 2a70: 30322073 .4byte 0x30322073 + 2a74: 3431 .2byte 0x3431 + 2a76: 3131 .2byte 0x3131 + 2a78: 004c .2byte 0x4c + 2a7a: 5f5f 5250 4741 .byte 0x5f, 0x5f, 0x50, 0x52, 0x41, 0x47 + 2a80: 414d .2byte 0x414d + 2a82: 525f 4445 4645 .byte 0x5f, 0x52, 0x45, 0x44, 0x45, 0x46 + 2a88: 4e49 .2byte 0x4e49 + 2a8a: 5f45 .2byte 0x5f45 + 2a8c: 5845 .2byte 0x5845 + 2a8e: 4e54 .2byte 0x4e54 + 2a90: 4d41 .2byte 0x4d41 + 2a92: 2045 .2byte 0x2045 + 2a94: 0031 .2byte 0x31 + 2a96: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f + 2a9c: 75727473 .4byte 0x75727473 + 2aa0: 72757463 bgeu x10,x7,31c8 <_start-0x7fffce38> + 2aa4: 6465 .2byte 0x6465 + 2aa6: 625f 6e69 6964 .byte 0x5f, 0x62, 0x69, 0x6e, 0x64, 0x69 + 2aac: 676e .2byte 0x676e + 2aae: 30322073 .4byte 0x30322073 + 2ab2: 3631 .2byte 0x3631 + 2ab4: 3630 .2byte 0x3630 + 2ab6: 004c .2byte 0x4c + 2ab8: 5f5f 4347 5f43 .byte 0x5f, 0x5f, 0x47, 0x43, 0x43, 0x5f + 2abe: 5441 .2byte 0x5441 + 2ac0: 43494d4f .4byte 0x43494d4f + 2ac4: 4c5f 4f4c 474e .byte 0x5f, 0x4c, 0x4c, 0x4f, 0x4e, 0x47 + 2aca: 4c5f 434f 5f4b .byte 0x5f, 0x4c, 0x4f, 0x43, 0x4b, 0x5f + 2ad0: 5246 .2byte 0x5246 + 2ad2: 4545 .2byte 0x4545 + 2ad4: 3120 .2byte 0x3120 + 2ad6: 5f00 .2byte 0x5f00 + 2ad8: 465f 544c 4d5f .byte 0x5f, 0x46, 0x4c, 0x54, 0x5f, 0x4d + 2ade: 5841 .2byte 0x5841 + 2ae0: 455f 5058 5f5f .byte 0x5f, 0x45, 0x58, 0x50, 0x5f, 0x5f + 2ae6: 3120 .2byte 0x3120 + 2ae8: 3832 .2byte 0x3832 + 2aea: 5f00 .2byte 0x5f00 + 2aec: 415f 4f54 494d .byte 0x5f, 0x41, 0x54, 0x4f, 0x4d, 0x49 + 2af2: 43415f43 .4byte 0x43415f43 + 2af6: 5f51 .2byte 0x5f51 + 2af8: 4552 .2byte 0x4552 + 2afa: 204c .2byte 0x204c + 2afc: 0034 .2byte 0x34 + 2afe: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 + 2b04: 465f 5341 3654 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x36 + 2b0a: 5f34 .2byte 0x5f34 + 2b0c: 5954 .2byte 0x5954 + 2b0e: 4550 .2byte 0x4550 + 2b10: 5f5f 6c20 6e6f .byte 0x5f, 0x5f, 0x20, 0x6c, 0x6f, 0x6e + 2b16: 6f6c2067 .4byte 0x6f6c2067 + 2b1a: 676e .2byte 0x676e + 2b1c: 7520 .2byte 0x7520 + 2b1e: 736e .2byte 0x736e + 2b20: 6769 .2byte 0x6769 + 2b22: 656e .2byte 0x656e + 2b24: 2064 .2byte 0x2064 + 2b26: 6e69 .2byte 0x6e69 + 2b28: 0074 .2byte 0x74 + 2b2a: 41484357 .4byte 0x41484357 + 2b2e: 5f52 .2byte 0x5f52 + 2b30: 414d .2byte 0x414d + 2b32: 0058 .2byte 0x58 + 2b34: 4e49 .2byte 0x4e49 + 2b36: 3354 .2byte 0x3354 + 2b38: 5f32 .2byte 0x5f32 + 2b3a: 494d .2byte 0x494d + 2b3c: 004e .2byte 0x4e + 2b3e: 5f5f 4c46 5f54 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x5f + 2b44: 494d .2byte 0x494d + 2b46: 5f4e .2byte 0x5f4e + 2b48: 205f 2e31 3731 .byte 0x5f, 0x20, 0x31, 0x2e, 0x31, 0x37 + 2b4e: 3435 .2byte 0x3435 + 2b50: 3439 .2byte 0x3439 + 2b52: 38303533 .4byte 0x38303533 + 2b56: 3232 .2byte 0x3232 + 2b58: 3832 .2byte 0x3832 + 2b5a: 37303537 lui x10,0x37303 + 2b5e: 3639 .2byte 0x3639 + 2b60: 3738 .2byte 0x3738 + 2b62: 33353633 .4byte 0x33353633 + 2b66: 32323237 lui x4,0x32323 + 2b6a: 3432 .2byte 0x3432 + 2b6c: 3635 .2byte 0x3635 + 2b6e: 6538 .2byte 0x6538 + 2b70: 332d .2byte 0x332d + 2b72: 4638 .2byte 0x4638 + 2b74: 5500 .2byte 0x5500 + 2b76: 4e49 .2byte 0x4e49 + 2b78: 5f54 .2byte 0x5f54 + 2b7a: 4146 .2byte 0x4146 + 2b7c: 5f385453 .4byte 0x5f385453 + 2b80: 414d .2byte 0x414d + 2b82: 2058 .2byte 0x2058 + 2b84: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 + 2b8a: 465f 5341 3854 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x38 + 2b90: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 2b96: 5f00 .2byte 0x5f00 + 2b98: 495f 544e 5450 .byte 0x5f, 0x49, 0x4e, 0x54, 0x50, 0x54 + 2b9e: 5f52 .2byte 0x5f52 + 2ba0: 5954 .2byte 0x5954 + 2ba2: 4550 .2byte 0x4550 + 2ba4: 5f5f 6920 746e .byte 0x5f, 0x5f, 0x20, 0x69, 0x6e, 0x74 + 2baa: 5f00 .2byte 0x5f00 + 2bac: 635f 6c70 7375 .byte 0x5f, 0x63, 0x70, 0x6c, 0x75, 0x73 + 2bb2: 6c70 .2byte 0x6c70 + 2bb4: 7375 .2byte 0x7375 + 2bb6: 3220 .2byte 0x3220 + 2bb8: 3130 .2byte 0x3130 + 2bba: 4c333037 lui x0,0x4c333 + 2bbe: 5f00 .2byte 0x5f00 + 2bc0: 4c5f 4244 5f4c .byte 0x5f, 0x4c, 0x44, 0x42, 0x4c, 0x5f + 2bc6: 4544 .2byte 0x4544 + 2bc8: 414d4943 .4byte 0x414d4943 + 2bcc: 5f4c .2byte 0x5f4c + 2bce: 4944 .2byte 0x4944 + 2bd0: 205f5f47 .4byte 0x205f5f47 + 2bd4: 5f003633 .4byte 0x5f003633 + 2bd8: 635f 7070 695f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x69 + 2bde: 686e .2byte 0x686e + 2be0: 7265 .2byte 0x7265 + 2be2: 7469 .2byte 0x7469 + 2be4: 6e69 .2byte 0x6e69 + 2be6: 6f635f67 .4byte 0x6f635f67 + 2bea: 736e .2byte 0x736e + 2bec: 7274 .2byte 0x7274 + 2bee: 6375 .2byte 0x6375 + 2bf0: 6f74 .2byte 0x6f74 + 2bf2: 7372 .2byte 0x7372 + 2bf4: 3220 .2byte 0x3220 + 2bf6: 3130 .2byte 0x3130 + 2bf8: 3135 .2byte 0x3135 + 2bfa: 4c31 .2byte 0x4c31 + 2bfc: 5f00 .2byte 0x5f00 + 2bfe: 495f 544e 4c5f .byte 0x5f, 0x49, 0x4e, 0x54, 0x5f, 0x4c + 2c04: 4145 .2byte 0x4145 + 2c06: 32335453 .4byte 0x32335453 + 2c0a: 575f 4449 4854 .byte 0x5f, 0x57, 0x49, 0x44, 0x54, 0x48 + 2c10: 5f5f 3320 0032 .byte 0x5f, 0x5f, 0x20, 0x33, 0x32, 0x00 + 2c16: 5f5f 4e47 4355 .byte 0x5f, 0x5f, 0x47, 0x4e, 0x55, 0x43 + 2c1c: 575f 4449 5f45 .byte 0x5f, 0x57, 0x49, 0x44, 0x45, 0x5f + 2c22: 5845 .2byte 0x5845 + 2c24: 4345 .2byte 0x4345 + 2c26: 5455 .2byte 0x5455 + 2c28: 4f49 .2byte 0x4f49 + 2c2a: 5f4e .2byte 0x5f4e + 2c2c: 52414843 .4byte 0x52414843 + 2c30: 5f544553 .4byte 0x5f544553 + 2c34: 414e .2byte 0x414e + 2c36: 454d .2byte 0x454d + 2c38: 2220 .2byte 0x2220 + 2c3a: 5455 .2byte 0x5455 + 2c3c: 2d46 .2byte 0x2d46 + 2c3e: 454c3233 .4byte 0x454c3233 + 2c42: 0022 .2byte 0x22 + 2c44: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 + 2c4a: 465f 5341 3354 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x33 + 2c50: 5f32 .2byte 0x5f32 + 2c52: 5954 .2byte 0x5954 + 2c54: 4550 .2byte 0x4550 + 2c56: 5f5f 7520 736e .byte 0x5f, 0x5f, 0x20, 0x75, 0x6e, 0x73 + 2c5c: 6769 .2byte 0x6769 + 2c5e: 656e .2byte 0x656e + 2c60: 2064 .2byte 0x2064 + 2c62: 6e69 .2byte 0x6e69 + 2c64: 0074 .2byte 0x74 + 2c66: 5f5f 4957 544e .byte 0x5f, 0x5f, 0x57, 0x49, 0x4e, 0x54 + 2c6c: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f + 2c72: 205f 6e75 6973 .byte 0x5f, 0x20, 0x75, 0x6e, 0x73, 0x69 + 2c78: 64656e67 .4byte 0x64656e67 + 2c7c: 6920 .2byte 0x6920 + 2c7e: 746e .2byte 0x746e + 2c80: 5f00 .2byte 0x5f00 + 2c82: 535f 5a49 5f45 .byte 0x5f, 0x53, 0x49, 0x5a, 0x45, 0x5f + 2c88: 5954 .2byte 0x5954 + 2c8a: 4550 .2byte 0x4550 + 2c8c: 5f5f 7520 736e .byte 0x5f, 0x5f, 0x20, 0x75, 0x6e, 0x73 + 2c92: 6769 .2byte 0x6769 + 2c94: 656e .2byte 0x656e + 2c96: 2064 .2byte 0x2064 + 2c98: 6e69 .2byte 0x6e69 + 2c9a: 0074 .2byte 0x74 + 2c9c: 41484357 .4byte 0x41484357 + 2ca0: 5f52 .2byte 0x5f52 + 2ca2: 494d .2byte 0x494d + 2ca4: 204e .2byte 0x204e + 2ca6: 5f5f 4357 4148 .byte 0x5f, 0x5f, 0x57, 0x43, 0x48, 0x41 + 2cac: 5f52 .2byte 0x5f52 + 2cae: 494d .2byte 0x494d + 2cb0: 5f4e .2byte 0x5f4e + 2cb2: 005f 5f5f 7063 .byte 0x5f, 0x00, 0x5f, 0x5f, 0x63, 0x70 + 2cb8: 5f70 .2byte 0x5f70 + 2cba: 616c .2byte 0x616c + 2cbc: 626d .2byte 0x626d + 2cbe: 6164 .2byte 0x6164 + 2cc0: 30322073 .4byte 0x30322073 + 2cc4: 3930 .2byte 0x3930 + 2cc6: 3730 .2byte 0x3730 + 2cc8: 004c .2byte 0x4c + 2cca: 5f5f 4347 5f43 .byte 0x5f, 0x5f, 0x47, 0x43, 0x43, 0x5f + 2cd0: 5441 .2byte 0x5441 + 2cd2: 43494d4f .4byte 0x43494d4f + 2cd6: 535f 4f48 5452 .byte 0x5f, 0x53, 0x48, 0x4f, 0x52, 0x54 + 2cdc: 4c5f 434f 5f4b .byte 0x5f, 0x4c, 0x4f, 0x43, 0x4b, 0x5f + 2ce2: 5246 .2byte 0x5246 + 2ce4: 4545 .2byte 0x4545 + 2ce6: 3120 .2byte 0x3120 + 2ce8: 5f00 .2byte 0x5f00 + 2cea: 445f 4c42 455f .byte 0x5f, 0x44, 0x42, 0x4c, 0x5f, 0x45 + 2cf0: 5350 .2byte 0x5350 + 2cf2: 4c49 .2byte 0x4c49 + 2cf4: 5f5f4e4f .4byte 0x5f5f4e4f + 2cf8: 6420 .2byte 0x6420 + 2cfa: 6c62756f jal x10,2a3c0 <_start-0x7ffd5c40> + 2cfe: 2865 .2byte 0x2865 + 2d00: 2e32 .2byte 0x2e32 + 2d02: 3232 .2byte 0x3232 + 2d04: 3430 .2byte 0x3430 + 2d06: 3634 .2byte 0x3634 + 2d08: 3430 .2byte 0x3430 + 2d0a: 3239 .2byte 0x3239 + 2d0c: 3035 .2byte 0x3035 + 2d0e: 30333133 .4byte 0x30333133 + 2d12: 3038 .2byte 0x3038 + 2d14: 3438 .2byte 0x3438 + 2d16: 33363237 lui x4,0x33363 + 2d1a: 31363333 .4byte 0x31363333 + 2d1e: 3138 .2byte 0x3138 + 2d20: 3436 .2byte 0x3436 + 2d22: 3630 .2byte 0x3630 + 2d24: 6532 .2byte 0x6532 + 2d26: 312d .2byte 0x312d + 2d28: 4c36 .2byte 0x4c36 + 2d2a: 0029 .2byte 0x29 + 2d2c: 4e49 .2byte 0x4e49 + 2d2e: 5f54 .2byte 0x5f54 + 2d30: 454c .2byte 0x454c + 2d32: 5341 .2byte 0x5341 + 2d34: 3654 .2byte 0x3654 + 2d36: 5f34 .2byte 0x5f34 + 2d38: 414d .2byte 0x414d + 2d3a: 2058 .2byte 0x2058 + 2d3c: 5f5f 4e49 5f54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x5f + 2d42: 454c .2byte 0x454c + 2d44: 5341 .2byte 0x5341 + 2d46: 3654 .2byte 0x3654 + 2d48: 5f34 .2byte 0x5f34 + 2d4a: 414d .2byte 0x414d + 2d4c: 5f58 .2byte 0x5f58 + 2d4e: 005f 5f5f 7063 .byte 0x5f, 0x00, 0x5f, 0x5f, 0x63, 0x70 + 2d54: 5f70 .2byte 0x5f70 + 2d56: 6574 .2byte 0x6574 + 2d58: 706d .2byte 0x706d + 2d5a: 616c .2byte 0x616c + 2d5c: 6574 .2byte 0x6574 + 2d5e: 745f 6d65 6c70 .byte 0x5f, 0x74, 0x65, 0x6d, 0x70, 0x6c + 2d64: 7461 .2byte 0x7461 + 2d66: 5f65 .2byte 0x5f65 + 2d68: 7261 .2byte 0x7261 + 2d6a: 32207367 .4byte 0x32207367 + 2d6e: 3130 .2byte 0x3130 + 2d70: 3136 .2byte 0x3136 + 2d72: 4c31 .2byte 0x4c31 + 2d74: 5f00 .2byte 0x5f00 + 2d76: 465f 544c 455f .byte 0x5f, 0x46, 0x4c, 0x54, 0x5f, 0x45 + 2d7c: 5350 .2byte 0x5350 + 2d7e: 4c49 .2byte 0x4c49 + 2d80: 5f5f4e4f .4byte 0x5f5f4e4f + 2d84: 3120 .2byte 0x3120 + 2d86: 312e .2byte 0x312e + 2d88: 3239 .2byte 0x3239 + 2d8a: 3930 .2byte 0x3930 + 2d8c: 3832 .2byte 0x3832 + 2d8e: 3539 .2byte 0x3539 + 2d90: 3035 .2byte 0x3035 + 2d92: 32313837 lui x16,0x32313 + 2d96: 3035 .2byte 0x3035 + 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: 3030 .2byte 0x3030 + 2da8: 3030 .2byte 0x3030 + 2daa: 2d65 .2byte 0x2d65 + 2dac: 5f004637 lui x12,0x5f004 + 2db0: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 + 2db6: 4d5f 4e49 455f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x45 + 2dbc: 5058 .2byte 0x5058 + 2dbe: 5f5f 2820 312d .byte 0x5f, 0x5f, 0x20, 0x28, 0x2d, 0x31 + 2dc4: 3230 .2byte 0x3230 + 2dc6: 2931 .2byte 0x2931 + 2dc8: 5500 .2byte 0x5500 + 2dca: 4e49 .2byte 0x4e49 + 2dcc: 3854 .2byte 0x3854 + 2dce: 435f 5f00 465f .byte 0x5f, 0x43, 0x00, 0x5f, 0x5f, 0x46 + 2dd4: 544c .2byte 0x544c + 2dd6: 455f 4156 5f4c .byte 0x5f, 0x45, 0x56, 0x41, 0x4c, 0x5f + 2ddc: 454d .2byte 0x454d + 2dde: 4854 .2byte 0x4854 + 2de0: 545f444f .4byte 0x545f444f + 2de4: 38315f53 .4byte 0x38315f53 + 2de8: 3636 .2byte 0x3636 + 2dea: 5f31 .2byte 0x5f31 + 2dec: 205f5f33 .4byte 0x205f5f33 + 2df0: 0030 .2byte 0x30 + 2df2: 5f5f 4244 5f4c .byte 0x5f, 0x5f, 0x44, 0x42, 0x4c, 0x5f + 2df8: 4148 .2byte 0x4148 + 2dfa: 4e495f53 .4byte 0x4e495f53 + 2dfe: 4946 .2byte 0x4946 + 2e00: 494e .2byte 0x494e + 2e02: 5954 .2byte 0x5954 + 2e04: 5f5f 3120 5300 .byte 0x5f, 0x5f, 0x20, 0x31, 0x00, 0x53 + 2e0a: 4749 .2byte 0x4749 + 2e0c: 415f 4f54 494d .byte 0x5f, 0x41, 0x54, 0x4f, 0x4d, 0x49 + 2e12: 414d5f43 .4byte 0x414d5f43 + 2e16: 2058 .2byte 0x2058 + 2e18: 5f5f 4953 5f47 .byte 0x5f, 0x5f, 0x53, 0x49, 0x47, 0x5f + 2e1e: 5441 .2byte 0x5441 + 2e20: 43494d4f .4byte 0x43494d4f + 2e24: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 2e2a: 5f00 .2byte 0x5f00 + 2e2c: 475f 5858 525f .byte 0x5f, 0x47, 0x58, 0x58, 0x5f, 0x52 + 2e32: 5454 .2byte 0x5454 + 2e34: 2049 .2byte 0x2049 + 2e36: 0031 .2byte 0x31 + 2e38: 5f5f 4c46 5f54 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x5f + 2e3e: 4148 .2byte 0x4148 + 2e40: 55515f53 .4byte 0x55515f53 + 2e44: 4549 .2byte 0x4549 + 2e46: 5f54 .2byte 0x5f54 + 2e48: 414e .2byte 0x414e + 2e4a: 5f4e .2byte 0x5f4e + 2e4c: 205f 0031 5f5f .byte 0x5f, 0x20, 0x31, 0x00, 0x5f, 0x5f + 2e52: 455a4953 .4byte 0x455a4953 + 2e56: 495f464f .4byte 0x495f464f + 2e5a: 544e .2byte 0x544e + 2e5c: 5f5f 3420 5f00 .byte 0x5f, 0x5f, 0x20, 0x34, 0x00, 0x5f + 2e62: 635f 7070 615f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x61 + 2e68: 65726767 .4byte 0x65726767 + 2e6c: 65746167 .4byte 0x65746167 + 2e70: 6e5f 6473 696d .byte 0x5f, 0x6e, 0x73, 0x64, 0x6d, 0x69 + 2e76: 3220 .2byte 0x3220 + 2e78: 3130 .2byte 0x3130 + 2e7a: 4c343033 .4byte 0x4c343033 + 2e7e: 5f00 .2byte 0x5f00 + 2e80: 495f 544e 414d .byte 0x5f, 0x49, 0x4e, 0x54, 0x4d, 0x41 + 2e86: 5f58 .2byte 0x5f58 + 2e88: 5954 .2byte 0x5954 + 2e8a: 4550 .2byte 0x4550 + 2e8c: 5f5f 6c20 6e6f .byte 0x5f, 0x5f, 0x20, 0x6c, 0x6f, 0x6e + 2e92: 6f6c2067 .4byte 0x6f6c2067 + 2e96: 676e .2byte 0x676e + 2e98: 6920 .2byte 0x6920 + 2e9a: 746e .2byte 0x746e + 2e9c: 5f00 .2byte 0x5f00 + 2e9e: 725f 7369 7663 .byte 0x5f, 0x72, 0x69, 0x73, 0x63, 0x76 + 2ea4: 3120 .2byte 0x3120 + 2ea6: 5f00 .2byte 0x5f00 + 2ea8: 635f 7070 645f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x64 + 2eae: 6c65 .2byte 0x6c65 + 2eb0: 6765 .2byte 0x6765 + 2eb2: 7461 .2byte 0x7461 + 2eb4: 6e69 .2byte 0x6e69 + 2eb6: 6f635f67 .4byte 0x6f635f67 + 2eba: 736e .2byte 0x736e + 2ebc: 7274 .2byte 0x7274 + 2ebe: 6375 .2byte 0x6375 + 2ec0: 6f74 .2byte 0x6f74 + 2ec2: 7372 .2byte 0x7372 + 2ec4: 3220 .2byte 0x3220 + 2ec6: 3030 .2byte 0x3030 + 2ec8: 3036 .2byte 0x3036 + 2eca: 4c34 .2byte 0x4c34 + 2ecc: 4900 .2byte 0x4900 + 2ece: 544e .2byte 0x544e + 2ed0: 465f 5341 3354 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x33 + 2ed6: 5f32 .2byte 0x5f32 + 2ed8: 494d .2byte 0x494d + 2eda: 204e .2byte 0x204e + 2edc: 2d28 .2byte 0x2d28 + 2ede: 4e49 .2byte 0x4e49 + 2ee0: 5f54 .2byte 0x5f54 + 2ee2: 4146 .2byte 0x4146 + 2ee4: 32335453 .4byte 0x32335453 + 2ee8: 4d5f 5841 2d20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x2d + 2eee: 3120 .2byte 0x3120 + 2ef0: 0029 .2byte 0x29 + 2ef2: 544e4957 .4byte 0x544e4957 + 2ef6: 4d5f 4e49 5f00 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x00, 0x5f + 2efc: 635f 7070 755f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x75 + 2f02: 5f726573 .4byte 0x5f726573 + 2f06: 6564 .2byte 0x6564 + 2f08: 6966 .2byte 0x6966 + 2f0a: 656e .2byte 0x656e + 2f0c: 5f64 .2byte 0x5f64 + 2f0e: 696c .2byte 0x696c + 2f10: 6574 .2byte 0x6574 + 2f12: 6172 .2byte 0x6172 + 2f14: 736c .2byte 0x736c + 2f16: 3220 .2byte 0x3220 + 2f18: 3030 .2byte 0x3030 + 2f1a: 3038 .2byte 0x3038 + 2f1c: 4c39 .2byte 0x4c39 + 2f1e: 5500 .2byte 0x5500 + 2f20: 4e49 .2byte 0x4e49 + 2f22: 5f54 .2byte 0x5f54 + 2f24: 4146 .2byte 0x4146 + 2f26: 36315453 .4byte 0x36315453 + 2f2a: 4d5f 5841 5f20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x5f + 2f30: 555f 4e49 5f54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x5f + 2f36: 4146 .2byte 0x4146 + 2f38: 36315453 .4byte 0x36315453 + 2f3c: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 2f42: 4900 .2byte 0x4900 + 2f44: 544e .2byte 0x544e + 2f46: 5f38 .2byte 0x5f38 + 2f48: 414d .2byte 0x414d + 2f4a: 2058 .2byte 0x2058 + 2f4c: 5f5f 4e49 3854 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x38 + 2f52: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 2f58: 5f00 .2byte 0x5f00 + 2f5a: 555f 4e49 3654 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x36 + 2f60: 5f34 .2byte 0x5f34 + 2f62: 5954 .2byte 0x5954 + 2f64: 4550 .2byte 0x4550 + 2f66: 5f5f 6c20 6e6f .byte 0x5f, 0x5f, 0x20, 0x6c, 0x6f, 0x6e + 2f6c: 6f6c2067 .4byte 0x6f6c2067 + 2f70: 676e .2byte 0x676e + 2f72: 7520 .2byte 0x7520 + 2f74: 736e .2byte 0x736e + 2f76: 6769 .2byte 0x6769 + 2f78: 656e .2byte 0x656e + 2f7a: 2064 .2byte 0x2064 + 2f7c: 6e69 .2byte 0x6e69 + 2f7e: 0074 .2byte 0x74 + 2f80: 5f5f 4c46 3354 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x33 + 2f86: 5832 .2byte 0x5832 + 2f88: 485f 5341 515f .byte 0x5f, 0x48, 0x41, 0x53, 0x5f, 0x51 + 2f8e: 4955 .2byte 0x4955 + 2f90: 5445 .2byte 0x5445 + 2f92: 4e5f 4e41 5f5f .byte 0x5f, 0x4e, 0x41, 0x4e, 0x5f, 0x5f + 2f98: 3120 .2byte 0x3120 + 2f9a: 5f00 .2byte 0x5f00 + 2f9c: 445f 4c42 4d5f .byte 0x5f, 0x44, 0x42, 0x4c, 0x5f, 0x4d + 2fa2: 5841 .2byte 0x5841 + 2fa4: 315f 5f30 5845 .byte 0x5f, 0x31, 0x30, 0x5f, 0x45, 0x58 + 2faa: 5f50 .2byte 0x5f50 + 2fac: 205f 3033 0038 .byte 0x5f, 0x20, 0x33, 0x30, 0x38, 0x00 + 2fb2: 4955 .2byte 0x4955 + 2fb4: 544e .2byte 0x544e + 2fb6: 4d5f3233 .4byte 0x4d5f3233 + 2fba: 5841 .2byte 0x5841 + 2fbc: 5f20 .2byte 0x5f20 + 2fbe: 555f 4e49 3354 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x33 + 2fc4: 5f32 .2byte 0x5f32 + 2fc6: 414d .2byte 0x414d + 2fc8: 5f58 .2byte 0x5f58 + 2fca: 005f 5f5f 4e49 .byte 0x5f, 0x00, 0x5f, 0x5f, 0x49, 0x4e + 2fd0: 5f54 .2byte 0x5f54 + 2fd2: 4146 .2byte 0x4146 + 2fd4: 32335453 .4byte 0x32335453 + 2fd8: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f + 2fde: 205f 6e69 0074 .byte 0x5f, 0x20, 0x69, 0x6e, 0x74, 0x00 + 2fe4: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f + 2fea: 74706163 bltu x0,x7,372c <_start-0x7fffc8d4> + 2fee: 7275 .2byte 0x7275 + 2ff0: 5f65 .2byte 0x5f65 + 2ff2: 72617473 .4byte 0x72617473 + 2ff6: 745f 6968 2073 .byte 0x5f, 0x74, 0x68, 0x69, 0x73, 0x20 + 2ffc: 3032 .2byte 0x3032 + 2ffe: 3631 .2byte 0x3631 + 3000: 3330 .2byte 0x3330 + 3002: 004c .2byte 0x4c + 3004: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f + 300a: 6e75 .2byte 0x6e75 + 300c: 6369 .2byte 0x6369 + 300e: 5f65646f jal x8,59604 <_start-0x7ffa69fc> + 3012: 72616863 bltu x2,x6,3742 <_start-0x7fffc8be> + 3016: 6361 .2byte 0x6361 + 3018: 6574 .2byte 0x6574 + 301a: 7372 .2byte 0x7372 + 301c: 3220 .2byte 0x3220 + 301e: 3130 .2byte 0x3130 + 3020: 3134 .2byte 0x3134 + 3022: 4c31 .2byte 0x4c31 + 3024: 5f00 .2byte 0x5f00 + 3026: 425f 4749 4547 .byte 0x5f, 0x42, 0x49, 0x47, 0x47, 0x45 + 302c: 415f5453 .4byte 0x415f5453 + 3030: 494c .2byte 0x494c + 3032: 454d4e47 .4byte 0x454d4e47 + 3036: 544e .2byte 0x544e + 3038: 5f5f 3120 0036 .byte 0x5f, 0x5f, 0x20, 0x31, 0x36, 0x00 + 303e: 5f5f 4c46 3154 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x31 + 3044: 3832 .2byte 0x3832 + 3046: 445f 4e45 524f .byte 0x5f, 0x44, 0x45, 0x4e, 0x4f, 0x52 + 304c: 5f4d .2byte 0x5f4d + 304e: 494d .2byte 0x494d + 3050: 5f4e .2byte 0x5f4e + 3052: 205f 2e36 3734 .byte 0x5f, 0x20, 0x36, 0x2e, 0x34, 0x37 + 3058: 3135 .2byte 0x3135 + 305a: 31313537 lui x10,0x31313 + 305e: 3439 .2byte 0x3439 + 3060: 32303833 .4byte 0x32303833 + 3064: 3135 .2byte 0x3135 + 3066: 3031 .2byte 0x3031 + 3068: 3239 .2byte 0x3239 + 306a: 3434 .2byte 0x3434 + 306c: 35393833 .4byte 0x35393833 + 3070: 3238 .2byte 0x3238 + 3072: 3732 .2byte 0x3732 + 3074: 3436 .2byte 0x3436 + 3076: 3536 .2byte 0x3536 + 3078: 6535 .2byte 0x6535 + 307a: 342d .2byte 0x342d + 307c: 3639 .2byte 0x3639 + 307e: 4636 .2byte 0x4636 + 3080: 3231 .2byte 0x3231 + 3082: 0038 .2byte 0x38 + 3084: 4e49 .2byte 0x4e49 + 3086: 5f54 .2byte 0x5f54 + 3088: 454c .2byte 0x454c + 308a: 5341 .2byte 0x5341 + 308c: 3354 .2byte 0x3354 + 308e: 5f32 .2byte 0x5f32 + 3090: 494d .2byte 0x494d + 3092: 004e .2byte 0x4e + 3094: 4e49 .2byte 0x4e49 + 3096: 3154 .2byte 0x3154 + 3098: 5f36 .2byte 0x5f36 + 309a: 414d .2byte 0x414d + 309c: 2058 .2byte 0x2058 + 309e: 5f5f 4e49 3154 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x31 + 30a4: 5f36 .2byte 0x5f36 + 30a6: 414d .2byte 0x414d + 30a8: 5f58 .2byte 0x5f58 + 30aa: 005f 5f5f 4e49 .byte 0x5f, 0x00, 0x5f, 0x5f, 0x49, 0x4e + 30b0: 5f54 .2byte 0x5f54 + 30b2: 4146 .2byte 0x4146 + 30b4: 5f385453 .4byte 0x5f385453 + 30b8: 54444957 .4byte 0x54444957 + 30bc: 5f48 .2byte 0x5f48 + 30be: 205f 3233 5f00 .byte 0x5f, 0x20, 0x33, 0x32, 0x00, 0x5f + 30c4: 475f 4343 445f .byte 0x5f, 0x47, 0x43, 0x43, 0x5f, 0x44 + 30ca: 5345 .2byte 0x5345 + 30cc: 5254 .2byte 0x5254 + 30ce: 4355 .2byte 0x4355 + 30d0: 4954 .2byte 0x4954 + 30d2: 4556 .2byte 0x4556 + 30d4: 535f 5a49 2045 .byte 0x5f, 0x53, 0x49, 0x5a, 0x45, 0x20 + 30da: 5f003233 .4byte 0x5f003233 + 30de: 465f 544c 4d5f .byte 0x5f, 0x46, 0x4c, 0x54, 0x5f, 0x4d + 30e4: 4e49 .2byte 0x4e49 + 30e6: 455f 5058 5f5f .byte 0x5f, 0x45, 0x58, 0x50, 0x5f, 0x5f + 30ec: 2820 .2byte 0x2820 + 30ee: 312d .2byte 0x312d + 30f0: 3532 .2byte 0x3532 + 30f2: 0029 .2byte 0x29 + 30f4: 6f70 .2byte 0x6f70 + 30f6: 6e69 .2byte 0x6e69 + 30f8: 0074 .2byte 0x74 + 30fa: 5f5f 4347 5f43 .byte 0x5f, 0x5f, 0x47, 0x43, 0x43, 0x5f + 3100: 5441 .2byte 0x5441 + 3102: 43494d4f .4byte 0x43494d4f + 3106: 425f 4f4f 5f4c .byte 0x5f, 0x42, 0x4f, 0x4f, 0x4c, 0x5f + 310c: 4f4c .2byte 0x4f4c + 310e: 465f4b43 .4byte 0x465f4b43 + 3112: 4552 .2byte 0x4552 + 3114: 2045 .2byte 0x2045 + 3116: 0031 .2byte 0x31 + 3118: 5f5f 4c46 3154 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x31 + 311e: 3832 .2byte 0x3832 + 3120: 4e5f 524f 5f4d .byte 0x5f, 0x4e, 0x4f, 0x52, 0x4d, 0x5f + 3126: 414d .2byte 0x414d + 3128: 5f58 .2byte 0x5f58 + 312a: 205f 2e31 3831 .byte 0x5f, 0x20, 0x31, 0x2e, 0x31, 0x38 + 3130: 3739 .2byte 0x3739 + 3132: 39343133 .4byte 0x39343133 + 3136: 3335 .2byte 0x3335 + 3138: 3735 .2byte 0x3735 + 313a: 3332 .2byte 0x3332 + 313c: 3731 .2byte 0x3731 + 313e: 3536 .2byte 0x3536 + 3140: 3830 .2byte 0x3830 + 3142: 3735 .2byte 0x3735 + 3144: 3935 .2byte 0x3935 + 3146: 36363233 .4byte 0x36363233 + 314a: 3832 .2byte 0x3832 + 314c: 3030 .2byte 0x3030 + 314e: 65323037 lui x0,0x65323 + 3152: 3339342b .4byte 0x3339342b + 3156: 4632 .2byte 0x4632 + 3158: 3231 .2byte 0x3231 + 315a: 0038 .2byte 0x38 + 315c: 5f5f 4c45 5f46 .byte 0x5f, 0x5f, 0x45, 0x4c, 0x46, 0x5f + 3162: 205f 0031 4955 .byte 0x5f, 0x20, 0x31, 0x00, 0x55, 0x49 + 3168: 544e .2byte 0x544e + 316a: 3631 .2byte 0x3631 + 316c: 435f 5f00 495f .byte 0x5f, 0x43, 0x00, 0x5f, 0x5f, 0x49 + 3172: 544e .2byte 0x544e + 3174: 435f3233 .4byte 0x435f3233 + 3178: 6328 .2byte 0x6328 + 317a: 2029 .2byte 0x2029 + 317c: 23232063 .4byte 0x23232063 + 3180: 4c20 .2byte 0x4c20 + 3182: 4900 .2byte 0x4900 + 3184: 544e .2byte 0x544e + 3186: 3436 .2byte 0x3436 + 3188: 4d5f 4e49 5f00 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x00, 0x5f + 318e: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 + 3194: 5f58 .2byte 0x5f58 + 3196: 4544 .2byte 0x4544 + 3198: 414d4943 .4byte 0x414d4943 + 319c: 5f4c .2byte 0x5f4c + 319e: 4944 .2byte 0x4944 + 31a0: 205f5f47 .4byte 0x205f5f47 + 31a4: 5f003633 .4byte 0x5f003633 + 31a8: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 + 31ae: 5f58 .2byte 0x5f58 + 31b0: 414d .2byte 0x414d + 31b2: 5f58 .2byte 0x5f58 + 31b4: 3031 .2byte 0x3031 + 31b6: 455f 5058 5f5f .byte 0x5f, 0x45, 0x58, 0x50, 0x5f, 0x5f + 31bc: 3320 .2byte 0x3320 + 31be: 3830 .2byte 0x3830 + 31c0: 5f00 .2byte 0x5f00 + 31c2: 635f 7070 6e5f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x6e + 31c8: 79746e6f jal x28,4a15e <_start-0x7ffb5ea2> + 31cc: 6570 .2byte 0x6570 + 31ce: 745f 6d65 6c70 .byte 0x5f, 0x74, 0x65, 0x6d, 0x70, 0x6c + 31d4: 7461 .2byte 0x7461 + 31d6: 5f65 .2byte 0x5f65 + 31d8: 7261 .2byte 0x7261 + 31da: 32207367 .4byte 0x32207367 + 31de: 3130 .2byte 0x3130 + 31e0: 3134 .2byte 0x3134 + 31e2: 4c31 .2byte 0x4c31 + 31e4: 5f00 .2byte 0x5f00 + 31e6: 445f 4c42 485f .byte 0x5f, 0x44, 0x42, 0x4c, 0x5f, 0x48 + 31ec: 5341 .2byte 0x5341 + 31ee: 445f 4e45 524f .byte 0x5f, 0x44, 0x45, 0x4e, 0x4f, 0x52 + 31f4: 5f4d .2byte 0x5f4d + 31f6: 205f 0031 5f5f .byte 0x5f, 0x20, 0x31, 0x00, 0x5f, 0x5f + 31fc: 4c46 .2byte 0x4c46 + 31fe: 3354 .2byte 0x3354 + 3200: 5832 .2byte 0x5832 + 3202: 4e5f 524f 5f4d .byte 0x5f, 0x4e, 0x4f, 0x52, 0x4d, 0x5f + 3208: 414d .2byte 0x414d + 320a: 5f58 .2byte 0x5f58 + 320c: 205f 2e31 3937 .byte 0x5f, 0x20, 0x31, 0x2e, 0x37, 0x39 + 3212: 33393637 lui x12,0x33393 + 3216: 3331 .2byte 0x3331 + 3218: 3834 .2byte 0x3834 + 321a: 3236 .2byte 0x3236 + 321c: 37353133 .4byte 0x37353133 + 3220: 3830 .2byte 0x3830 + 3222: 3431 .2byte 0x3431 + 3224: 3235 .2byte 0x3235 + 3226: 33323437 lui x8,0x33323 + 322a: 37313337 lui x6,0x37313 + 322e: 3430 .2byte 0x3430 + 3230: 65373533 .4byte 0x65373533 + 3234: 3830332b .4byte 0x3830332b + 3238: 3346 .2byte 0x3346 + 323a: 7832 .2byte 0x7832 + 323c: 5500 .2byte 0x5500 + 323e: 4e49 .2byte 0x4e49 + 3240: 3654 .2byte 0x3654 + 3242: 5f34 .2byte 0x5f34 + 3244: 414d .2byte 0x414d + 3246: 2058 .2byte 0x2058 + 3248: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 + 324e: 3436 .2byte 0x3436 + 3250: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 3256: 5f00 .2byte 0x5f00 + 3258: 635f 7070 725f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x72 + 325e: 7761 .2byte 0x7761 + 3260: 735f 7274 6e69 .byte 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e + 3266: 32207367 .4byte 0x32207367 + 326a: 3030 .2byte 0x3030 + 326c: 4c303137 lui x2,0x4c303 + 3270: 5f00 .2byte 0x5f00 + 3272: 445f 4c42 445f .byte 0x5f, 0x44, 0x42, 0x4c, 0x5f, 0x44 + 3278: 4e45 .2byte 0x4e45 + 327a: 5f4d524f .4byte 0x5f4d524f + 327e: 494d .2byte 0x494d + 3280: 5f4e .2byte 0x5f4e + 3282: 205f 6f64 6275 .byte 0x5f, 0x20, 0x64, 0x6f, 0x75, 0x62 + 3288: 656c .2byte 0x656c + 328a: 3428 .2byte 0x3428 + 328c: 392e .2byte 0x392e + 328e: 3034 .2byte 0x3034 + 3290: 3536 .2byte 0x3536 + 3292: 3436 .2byte 0x3436 + 3294: 3835 .2byte 0x3835 + 3296: 3134 .2byte 0x3134 + 3298: 3432 .2byte 0x3432 + 329a: 3536 .2byte 0x3536 + 329c: 3434 .2byte 0x3434 + 329e: 3731 .2byte 0x3731 + 32a0: 3536 .2byte 0x3536 + 32a2: 3836 .2byte 0x3836 + 32a4: 38323937 lui x18,0x38323 + 32a8: 3836 .2byte 0x3836 + 32aa: 3232 .2byte 0x3232 + 32ac: 3331 .2byte 0x3331 + 32ae: 2d653237 lui x4,0x2d653 + 32b2: 4c343233 .4byte 0x4c343233 + 32b6: 0029 .2byte 0x29 + 32b8: 5f5f 4c46 3354 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x33 + 32be: 5f32 .2byte 0x5f32 + 32c0: 414d .2byte 0x414d + 32c2: 5f58 .2byte 0x5f58 + 32c4: 3031 .2byte 0x3031 + 32c6: 455f 5058 5f5f .byte 0x5f, 0x45, 0x58, 0x50, 0x5f, 0x5f + 32cc: 3320 .2byte 0x3320 + 32ce: 0038 .2byte 0x38 + 32d0: 4955 .2byte 0x4955 + 32d2: 544e .2byte 0x544e + 32d4: 465f 5341 3154 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x31 + 32da: 5f36 .2byte 0x5f36 + 32dc: 414d .2byte 0x414d + 32de: 0058 .2byte 0x58 + 32e0: 4955 .2byte 0x4955 + 32e2: 544e .2byte 0x544e + 32e4: 3436 .2byte 0x3436 + 32e6: 4d5f 5841 5f00 .byte 0x5f, 0x4d, 0x41, 0x58, 0x00, 0x5f + 32ec: 635f 7070 735f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x73 + 32f2: 6174 .2byte 0x6174 + 32f4: 6974 .2byte 0x6974 + 32f6: 73615f63 bge x2,x22,3a34 <_start-0x7fffc5cc> + 32fa: 74726573 .4byte 0x74726573 + 32fe: 3220 .2byte 0x3220 + 3300: 3130 .2byte 0x3130 + 3302: 3134 .2byte 0x3134 + 3304: 4c31 .2byte 0x4c31 + 3306: 5f00 .2byte 0x5f00 + 3308: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 + 330e: 445f 4e45 524f .byte 0x5f, 0x44, 0x45, 0x4e, 0x4f, 0x52 + 3314: 5f4d .2byte 0x5f4d + 3316: 494d .2byte 0x494d + 3318: 5f4e .2byte 0x5f4e + 331a: 205f 2e34 3439 .byte 0x5f, 0x20, 0x34, 0x2e, 0x39, 0x34 + 3320: 3630 .2byte 0x3630 + 3322: 3635 .2byte 0x3635 + 3324: 3534 .2byte 0x3534 + 3326: 3438 .2byte 0x3438 + 3328: 3231 .2byte 0x3231 + 332a: 3634 .2byte 0x3634 + 332c: 3435 .2byte 0x3435 + 332e: 3134 .2byte 0x3134 + 3330: 36353637 lui x12,0x36353 + 3334: 3738 .2byte 0x3738 + 3336: 3239 .2byte 0x3239 + 3338: 3638 .2byte 0x3638 + 333a: 3238 .2byte 0x3238 + 333c: 3132 .2byte 0x3132 + 333e: 65323733 .4byte 0x65323733 + 3342: 332d .2byte 0x332d + 3344: 3432 .2byte 0x3432 + 3346: 3646 .2byte 0x3646 + 3348: 0034 .2byte 0x34 + 334a: 5f5f 4e49 5f54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x5f + 3350: 454c .2byte 0x454c + 3352: 5341 .2byte 0x5341 + 3354: 3354 .2byte 0x3354 + 3356: 5f32 .2byte 0x5f32 + 3358: 414d .2byte 0x414d + 335a: 5f58 .2byte 0x5f58 + 335c: 205f 7830 6637 .byte 0x5f, 0x20, 0x30, 0x78, 0x37, 0x66 + 3362: 6666 .2byte 0x6666 + 3364: 6666 .2byte 0x6666 + 3366: 6666 .2byte 0x6666 + 3368: 004c .2byte 0x4c + 336a: 5f5f 444c 4c42 .byte 0x5f, 0x5f, 0x4c, 0x44, 0x42, 0x4c + 3370: 4d5f 5841 315f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x31 + 3376: 5f30 .2byte 0x5f30 + 3378: 5845 .2byte 0x5845 + 337a: 5f50 .2byte 0x5f50 + 337c: 205f 3934 3233 .byte 0x5f, 0x20, 0x34, 0x39, 0x33, 0x32 + 3382: 5f00 .2byte 0x5f00 + 3384: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 + 338a: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 3390: 3320 .2byte 0x3320 + 3392: 342e .2byte 0x342e + 3394: 3230 .2byte 0x3230 + 3396: 3238 .2byte 0x3238 + 3398: 36363433 .4byte 0x36363433 + 339c: 32353833 .4byte 0x32353833 + 33a0: 3838 .2byte 0x3838 + 33a2: 3935 .2byte 0x3935 + 33a4: 3138 .2byte 0x3138 + 33a6: 3731 .2byte 0x3731 + 33a8: 3430 .2byte 0x3430 + 33aa: 3831 .2byte 0x3831 + 33ac: 34383433 .4byte 0x34383433 + 33b0: 3135 .2byte 0x3135 + 33b2: 3936 .2byte 0x3936 + 33b4: 3532 .2byte 0x3532 + 33b6: 2b65 .2byte 0x2b65 + 33b8: 33463833 .4byte 0x33463833 + 33bc: 0032 .2byte 0x32 + 33be: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 + 33c4: 414d .2byte 0x414d + 33c6: 5f58 .2byte 0x5f58 + 33c8: 414d .2byte 0x414d + 33ca: 5f58 .2byte 0x5f58 + 33cc: 205f 7830 6666 .byte 0x5f, 0x20, 0x30, 0x78, 0x66, 0x66 + 33d2: 6666 .2byte 0x6666 + 33d4: 6666 .2byte 0x6666 + 33d6: 6666 .2byte 0x6666 + 33d8: 6666 .2byte 0x6666 + 33da: 6666 .2byte 0x6666 + 33dc: 6666 .2byte 0x6666 + 33de: 6666 .2byte 0x6666 + 33e0: 4c55 .2byte 0x4c55 + 33e2: 004c .2byte 0x4c + 33e4: 5f5f 4953 5f47 .byte 0x5f, 0x5f, 0x53, 0x49, 0x47, 0x5f + 33ea: 5441 .2byte 0x5441 + 33ec: 43494d4f .4byte 0x43494d4f + 33f0: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f + 33f6: 205f 6e69 0074 .byte 0x5f, 0x20, 0x69, 0x6e, 0x74, 0x00 + 33fc: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f + 3402: 657a6973 .4byte 0x657a6973 + 3406: 5f64 .2byte 0x5f64 + 3408: 6564 .2byte 0x6564 + 340a: 6c61 .2byte 0x6c61 + 340c: 6f6c .2byte 0x6f6c + 340e: 69746163 bltu x8,x23,3a90 <_start-0x7fffc570> + 3412: 32206e6f jal x28,9734 <_start-0x7fff68cc> + 3416: 3130 .2byte 0x3130 + 3418: 4c393033 .4byte 0x4c393033 + 341c: 5f00 .2byte 0x5f00 + 341e: 465f 544c 3231 .byte 0x5f, 0x46, 0x4c, 0x54, 0x31, 0x32 + 3424: 5f38 .2byte 0x5f38 + 3426: 4148 .2byte 0x4148 + 3428: 45445f53 .4byte 0x45445f53 + 342c: 4f4e .2byte 0x4f4e + 342e: 4d52 .2byte 0x4d52 + 3430: 5f5f 3120 5f00 .byte 0x5f, 0x5f, 0x20, 0x31, 0x00, 0x5f + 3436: 635f 7070 765f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x76 + 343c: 7261 .2byte 0x7261 + 343e: 6169 .2byte 0x6169 + 3440: 6964 .2byte 0x6964 + 3442: 73755f63 bge x10,x23,3b80 <_start-0x7fffc480> + 3446: 6e69 .2byte 0x6e69 + 3448: 30322067 .4byte 0x30322067 + 344c: 3631 .2byte 0x3631 + 344e: 3131 .2byte 0x3131 + 3450: 004c .2byte 0x4c + 3452: 4e49 .2byte 0x4e49 + 3454: 5f54 .2byte 0x5f54 + 3456: 454c .2byte 0x454c + 3458: 5341 .2byte 0x5341 + 345a: 3354 .2byte 0x3354 + 345c: 5f32 .2byte 0x5f32 + 345e: 414d .2byte 0x414d + 3460: 2058 .2byte 0x2058 + 3462: 5f5f 4e49 5f54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x5f + 3468: 454c .2byte 0x454c + 346a: 5341 .2byte 0x5341 + 346c: 3354 .2byte 0x3354 + 346e: 5f32 .2byte 0x5f32 + 3470: 414d .2byte 0x414d + 3472: 5f58 .2byte 0x5f58 + 3474: 005f 5f5f 4c46 .byte 0x5f, 0x00, 0x5f, 0x5f, 0x46, 0x4c + 347a: 3154 .2byte 0x3154 + 347c: 3832 .2byte 0x3832 + 347e: 495f 5f53 4549 .byte 0x5f, 0x49, 0x53, 0x5f, 0x49, 0x45 + 3484: 30365f43 .4byte 0x30365f43 + 3488: 3535 .2byte 0x3535 + 348a: 5f39 .2byte 0x5f39 + 348c: 205f 0032 5f5f .byte 0x5f, 0x20, 0x32, 0x00, 0x5f, 0x5f + 3492: 444c .2byte 0x444c + 3494: 4c42 .2byte 0x4c42 + 3496: 485f 5341 445f .byte 0x5f, 0x48, 0x41, 0x53, 0x5f, 0x44 + 349c: 4e45 .2byte 0x4e45 + 349e: 5f4d524f .4byte 0x5f4d524f + 34a2: 205f 0031 4957 .byte 0x5f, 0x20, 0x31, 0x00, 0x57, 0x49 + 34a8: 544e .2byte 0x544e + 34aa: 4d5f 5841 5f20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x5f + 34b0: 575f 4e49 5f54 .byte 0x5f, 0x57, 0x49, 0x4e, 0x54, 0x5f + 34b6: 414d .2byte 0x414d + 34b8: 5f58 .2byte 0x5f58 + 34ba: 005f 4955 544e .byte 0x5f, 0x00, 0x55, 0x49, 0x4e, 0x54 + 34c0: 5450 .2byte 0x5450 + 34c2: 5f52 .2byte 0x5f52 + 34c4: 414d .2byte 0x414d + 34c6: 0058 .2byte 0x58 + 34c8: 4e49 .2byte 0x4e49 + 34ca: 3354 .2byte 0x3354 + 34cc: 5f32 .2byte 0x5f32 + 34ce: 494d .2byte 0x494d + 34d0: 204e .2byte 0x204e + 34d2: 2d28 .2byte 0x2d28 + 34d4: 4e49 .2byte 0x4e49 + 34d6: 3354 .2byte 0x3354 + 34d8: 5f32 .2byte 0x5f32 + 34da: 414d .2byte 0x414d + 34dc: 2058 .2byte 0x2058 + 34de: 202d .2byte 0x202d + 34e0: 2931 .2byte 0x2931 + 34e2: 5f00 .2byte 0x5f00 + 34e4: 445f 4c42 445f .byte 0x5f, 0x44, 0x42, 0x4c, 0x5f, 0x44 + 34ea: 4749 .2byte 0x4749 + 34ec: 5f5f 3120 0035 .byte 0x5f, 0x5f, 0x20, 0x31, 0x35, 0x00 + 34f2: 5f5f 4c46 5f54 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x5f + 34f8: 4148 .2byte 0x4148 + 34fa: 45445f53 .4byte 0x45445f53 + 34fe: 4f4e .2byte 0x4f4e + 3500: 4d52 .2byte 0x4d52 + 3502: 5f5f 3120 5f00 .byte 0x5f, 0x5f, 0x20, 0x31, 0x00, 0x5f + 3508: 495f 544e 465f .byte 0x5f, 0x49, 0x4e, 0x54, 0x5f, 0x46 + 350e: 5341 .2byte 0x5341 + 3510: 3654 .2byte 0x3654 + 3512: 5f34 .2byte 0x5f34 + 3514: 54444957 .4byte 0x54444957 + 3518: 5f48 .2byte 0x5f48 + 351a: 205f 3436 5f00 .byte 0x5f, 0x20, 0x36, 0x34, 0x00, 0x5f + 3520: 445f 4c42 445f .byte 0x5f, 0x44, 0x42, 0x4c, 0x5f, 0x44 + 3526: 4345 .2byte 0x4345 + 3528: 4d49 .2byte 0x4d49 + 352a: 4c41 .2byte 0x4c41 + 352c: 445f 4749 5f5f .byte 0x5f, 0x44, 0x49, 0x47, 0x5f, 0x5f + 3532: 3120 .2byte 0x3120 + 3534: 6c730037 lui x0,0x6c730 + 3538: 006f776f jal x14,fa53e <_start-0x7ff05ac2> + 353c: 796d .2byte 0x796d + 353e: 7566 .2byte 0x7566 + 3540: 636e .2byte 0x636e + 3542: 485f 0020 6975 .byte 0x5f, 0x48, 0x20, 0x00, 0x75, 0x69 + 3548: 746e .2byte 0x746e + 354a: 5f38 .2byte 0x5f38 + 354c: 0074 .2byte 0x74 + 354e: 5a5f 3631 6f63 .byte 0x5f, 0x5a, 0x31, 0x36, 0x63, 0x6f + 3554: 6e75 .2byte 0x6e75 + 3556: 5f74 .2byte 0x5f74 + 3558: 72616863 bltu x2,x6,3c88 <_start-0x7fffc378> + 355c: 6361 .2byte 0x6361 + 355e: 6574 .2byte 0x6574 + 3560: 7372 .2byte 0x7372 + 3562: 4b50 .2byte 0x4b50 + 3564: 5f305363 bge x0,x19,3b4a <_start-0x7fffc4b6> + 3568: 6850 .2byte 0x6850 + 356a: 6100 .2byte 0x6100 + 356c: 666c .2byte 0x666c + 356e: 6261 .2byte 0x6261 + 3570: 7465 .2byte 0x7465 + 3572: 6c5f 6e65 7467 .byte 0x5f, 0x6c, 0x65, 0x6e, 0x67, 0x74 + 3578: 0068 .2byte 0x68 + 357a: 6e756f63 bltu x10,x7,3c78 <_start-0x7fffc388> + 357e: 5f74 .2byte 0x5f74 + 3580: 72616863 bltu x2,x6,3cb0 <_start-0x7fffc350> + 3584: 6361 .2byte 0x6361 + 3586: 6574 .2byte 0x6574 + 3588: 7372 .2byte 0x7372 + 358a: 6d00 .2byte 0x6d00 + 358c: 5f79 .2byte 0x5f79 + 358e: 6c727473 .4byte 0x6c727473 + 3592: 6e65 .2byte 0x6e65 + 3594: 7700 .2byte 0x7700 + 3596: 6e79 .2byte 0x6e79 + 3598: 6b69 .2byte 0x6b69 + 359a: 6100 .2byte 0x6100 + 359c: 666c .2byte 0x666c + 359e: 6261 .2byte 0x6261 + 35a0: 7465 .2byte 0x7465 + ... + +Disassembly of section .debug_line_str: + +00000000 <.debug_line_str>: + 0: 6d6f682f .4byte 0x6d6f682f + 4: 2f65 .2byte 0x2f65 + 6: 7375 .2byte 0x7375 + 8: 7265 .2byte 0x7265 + a: 726f772f .4byte 0x726f772f + e: 70632f6b .4byte 0x70632f6b + 12: 2f70 .2byte 0x2f70 + 14: 00707063 bgeu x0,x7,14 <_start-0x7fffffec> + 18: 635f 7472 2e30 .byte 0x5f, 0x63, 0x72, 0x74, 0x30, 0x2e + 1e: 725f0053 .4byte 0x725f0053 + 22: 6d76 .2byte 0x6d76 + 24: 6961 .2byte 0x6961 + 26: 2e6e .2byte 0x2e6e + 28: 00707063 bgeu x0,x7,28 <_start-0x7fffffd8> + 2c: 6d6f682f .4byte 0x6d6f682f + 30: 2f65 .2byte 0x2f65 + 32: 7375 .2byte 0x7375 + 34: 7265 .2byte 0x7265 + 36: 7369722f .4byte 0x7369722f + 3a: 722f7663 bgeu x30,x2,766 <_start-0x7ffff89a> + 3e: 7369 .2byte 0x7369 + 40: 6c2f7663 bgeu x30,x2,70c <_start-0x7ffff8f4> + 44: 6269 .2byte 0x6269 + 46: 6363672f .4byte 0x6363672f + 4a: 7369722f .4byte 0x7369722f + 4e: 34367663 bgeu x12,x3,39a <_start-0x7ffffc66> + 52: 752d .2byte 0x752d + 54: 6b6e .2byte 0x6b6e + 56: 6f6e .2byte 0x6f6e + 58: 652d6e77 .4byte 0x652d6e77 + 5c: 666c .2byte 0x666c + 5e: 2e32312f .4byte 0x2e32312f + 62: 2e32 .2byte 0x2e32 + 64: 2f30 .2byte 0x2f30 + 66: 6e69 .2byte 0x6e69 + 68: 64756c63 bltu x10,x7,6c0 <_start-0x7ffff940> + 6c: 0065 .2byte 0x65 + 6e: 69647473 .4byte 0x69647473 + 72: 746e .2byte 0x746e + 74: 672d .2byte 0x672d + 76: 682e6363 bltu x28,x2,6fc <_start-0x7ffff904> + 7a: 7300 .2byte 0x7300 + 7c: 6474 .2byte 0x6474 + 7e: 6e69 .2byte 0x6e69 + 80: 2e74 .2byte 0x2e74 + 82: 0068 .2byte 0x68 + 84: 796d .2byte 0x796d + 86: 7566 .2byte 0x7566 + 88: 636e .2byte 0x636e + 8a: 632e .2byte 0x632e + 8c: 7070 .2byte 0x7070 + 8e: 6d00 .2byte 0x6d00 + 90: 6679 .2byte 0x6679 + 92: 6e75 .2byte 0x6e75 + 94: 00682e63 .4byte 0x682e63 + +Disassembly of section .debug_macro: + +00000000 <.debug_macro>: + 0: 0005 .2byte 0x5 + 2: 8602 .2byte 0x8602 + 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: a90d .2byte 0xa90d + 1e: 001a .2byte 0x1a + 20: 0400 .2byte 0x400 + 22: 1405 .2byte 0x1405 + 24: 177a .2byte 0x177a + 26: 0000 .2byte 0x0 + 28: 0004 .2byte 0x4 + 2a: 0005 .2byte 0x5 + 2c: 0500 .2byte 0x500 + 2e: 6500 .2byte 0x6500 + 30: 0500001b .4byte 0x500001b + 34: ab00 .2byte 0xab00 + 36: 0500002b .4byte 0x500002b + 3a: 2400 .2byte 0x2400 + 3c: 001e .2byte 0x1e + 3e: 0500 .2byte 0x500 + 40: 5b00 .2byte 0x5b00 + 42: 0008 .2byte 0x8 + 44: 0500 .2byte 0x500 + 46: f600 .2byte 0xf600 + 48: 0029 .2byte 0x29 + 4a: 0500 .2byte 0x500 + 4c: 5300 .2byte 0x5300 + 4e: 000c .2byte 0xc + 50: 0500 .2byte 0x500 + 52: 7800 .2byte 0x7800 + 54: 05000003 lb x0,80(x0) # 50 <_start-0x7fffffb0> + 58: dd00 .2byte 0xdd00 + 5a: 001c .2byte 0x1c + 5c: 0500 .2byte 0x500 + 5e: e700 .2byte 0xe700 + 60: 0020 .2byte 0x20 + 62: 0500 .2byte 0x500 + 64: 3a00 .2byte 0x3a00 + 66: 0009 .2byte 0x9 + 68: 0500 .2byte 0x500 + 6a: 8c00 .2byte 0x8c00 + 6c: 0006 .2byte 0x6 + 6e: 0500 .2byte 0x500 + 70: 8d00 .2byte 0x8d00 + 72: 0020 .2byte 0x20 + 74: 0500 .2byte 0x500 + 76: cf00 .2byte 0xcf00 + 78: 0005 .2byte 0x5 + 7a: 0500 .2byte 0x500 + 7c: eb00 .2byte 0xeb00 + 7e: 002a .2byte 0x2a + 80: 0500 .2byte 0x500 + 82: fd00 .2byte 0xfd00 + 84: 0019 .2byte 0x19 + 86: 0500 .2byte 0x500 + 88: c200 .2byte 0xc200 + 8a: 0018 .2byte 0x18 + 8c: 0500 .2byte 0x500 + 8e: 5000 .2byte 0x5000 + 90: 002e .2byte 0x2e + 92: 0500 .2byte 0x500 + 94: 7000 .2byte 0x7000 + 96: 0500001b .4byte 0x500001b + 9a: ff00 .2byte 0xff00 + 9c: 0026 .2byte 0x26 + 9e: 0500 .2byte 0x500 + a0: 9f00 .2byte 0x9f00 + a2: 0006 .2byte 0x6 + a4: 0500 .2byte 0x500 + a6: 0200 .2byte 0x200 + a8: 0500001b .4byte 0x500001b + ac: c900 .2byte 0xc900 + ae: 001c .2byte 0x1c + b0: 0500 .2byte 0x500 + b2: d600 .2byte 0xd600 + b4: 000d .2byte 0xd + b6: 0500 .2byte 0x500 + b8: e200 .2byte 0xe200 + ba: 0029 .2byte 0x29 + bc: 0500 .2byte 0x500 + be: 4e00 .2byte 0x4e00 + c0: 0018 .2byte 0x18 + c2: 0500 .2byte 0x500 + c4: 2500 .2byte 0x2500 + c6: 0030 .2byte 0x30 + c8: 0500 .2byte 0x500 + ca: 2800 .2byte 0x2800 + cc: 0500000f fence ow,unknown + d0: 2900 .2byte 0x2900 + d2: 0005 .2byte 0x5 + d4: 0500 .2byte 0x500 + d6: a500 .2byte 0xa500 + d8: 0022 .2byte 0x22 + da: 0500 .2byte 0x500 + dc: 5900 .2byte 0x5900 + de: 05000007 .4byte 0x5000007 + e2: af00 .2byte 0xaf00 + e4: 001f 0500 2900 .byte 0x1f, 0x00, 0x00, 0x05, 0x00, 0x29 + ea: 0028 .2byte 0x28 + ec: 0500 .2byte 0x500 + ee: dc00 .2byte 0xdc00 + f0: 0008 .2byte 0x8 + f2: 0500 .2byte 0x500 + f4: 1600 .2byte 0x1600 + f6: 002c .2byte 0x2c + f8: 0500 .2byte 0x500 + fa: d100 .2byte 0xd100 + fc: 0024 .2byte 0x24 + fe: 0500 .2byte 0x500 + 100: 8100 .2byte 0x8100 + 102: 002c .2byte 0x2c + 104: 0500 .2byte 0x500 + 106: f900 .2byte 0xf900 + 108: 0005 .2byte 0x5 + 10a: 0500 .2byte 0x500 + 10c: c400 .2byte 0xc400 + 10e: 000c .2byte 0xc + 110: 0500 .2byte 0x500 + 112: 6600 .2byte 0x6600 + 114: 002c .2byte 0x2c + 116: 0500 .2byte 0x500 + 118: 7f00 .2byte 0x7f00 + 11a: 002e .2byte 0x2e + 11c: 0500 .2byte 0x500 + 11e: 9300 .2byte 0x9300 + 120: 0021 .2byte 0x21 + 122: 0500 .2byte 0x500 + 124: 9200 .2byte 0x9200 + 126: 0004 .2byte 0x4 + 128: 0500 .2byte 0x500 + 12a: a000 .2byte 0xa000 + 12c: 0020 .2byte 0x20 + 12e: 0500 .2byte 0x500 + 130: e400 .2byte 0xe400 + 132: 05000033 .4byte 0x5000033 + 136: 8200 .2byte 0x8200 + 138: 0025 .2byte 0x25 + 13a: 0500 .2byte 0x500 + 13c: 2200 .2byte 0x2200 + 13e: 0006 .2byte 0x6 + 140: 0500 .2byte 0x500 + 142: 6600 .2byte 0x6600 + 144: 0024 .2byte 0x24 + 146: 0500 .2byte 0x500 + 148: 3e00 .2byte 0x3e00 + 14a: 0012 .2byte 0x12 + 14c: 0500 .2byte 0x500 + 14e: 2500 .2byte 0x2500 + 150: 05000027 .4byte 0x5000027 + 154: 7600 .2byte 0x7600 + 156: 0011 .2byte 0x11 + 158: 0500 .2byte 0x500 + 15a: db00 .2byte 0xdb00 + 15c: 05000027 .4byte 0x5000027 + 160: 5900 .2byte 0x5900 + 162: 0500002f .4byte 0x500002f + 166: ca00 .2byte 0xca00 + 168: 0006 .2byte 0x6 + 16a: 0500 .2byte 0x500 + 16c: e600 .2byte 0xe600 + 16e: 0016 .2byte 0x16 + 170: 0500 .2byte 0x500 + 172: e900 .2byte 0xe900 + 174: 000c .2byte 0xc + 176: 0500 .2byte 0x500 + 178: b800 .2byte 0xb800 + 17a: 05000027 .4byte 0x5000027 + 17e: 9f00 .2byte 0x9f00 + 180: 0018 .2byte 0x18 + 182: 0500 .2byte 0x500 + 184: bf00 .2byte 0xbf00 + 186: 0022 .2byte 0x22 + 188: 0500 .2byte 0x500 + 18a: 6b00 .2byte 0x6b00 + 18c: 0021 .2byte 0x21 + 18e: 0500 .2byte 0x500 + 190: 6c00 .2byte 0x6c00 + 192: 0005 .2byte 0x5 + 194: 0500 .2byte 0x500 + 196: 2200 .2byte 0x2200 + 198: 000e .2byte 0xe + 19a: 0500 .2byte 0x500 + 19c: 4c00 .2byte 0x4c00 + 19e: 0011 .2byte 0x11 + 1a0: 0500 .2byte 0x500 + 1a2: cc00 .2byte 0xcc00 + 1a4: 0500002f .4byte 0x500002f + 1a8: de00 .2byte 0xde00 + 1aa: 0009 .2byte 0x9 + 1ac: 0500 .2byte 0x500 + 1ae: 7a00 .2byte 0x7a00 + 1b0: 0000 .2byte 0x0 + 1b2: 0500 .2byte 0x500 + 1b4: 0100 .2byte 0x100 + 1b6: 0014 .2byte 0x14 + 1b8: 0500 .2byte 0x500 + 1ba: 4400 .2byte 0x4400 + 1bc: 002c .2byte 0x2c + 1be: 0500 .2byte 0x500 + 1c0: fe00 .2byte 0xfe00 + 1c2: 002a .2byte 0x2a + 1c4: 0500 .2byte 0x500 + 1c6: 9700 .2byte 0x9700 + 1c8: 0500002b .4byte 0x500002b + 1cc: 7800 .2byte 0x7800 + 1ce: 000a .2byte 0xa + 1d0: 0500 .2byte 0x500 + 1d2: 4500 .2byte 0x4500 + 1d4: 0010 .2byte 0x10 + 1d6: 0500 .2byte 0x500 + 1d8: fd00 .2byte 0xfd00 + 1da: 05000017 auipc x0,0x5000 + 1de: 2b00 .2byte 0x2b00 + 1e0: 002e .2byte 0x2e + 1e2: 0500 .2byte 0x500 + 1e4: 5000 .2byte 0x5000 + 1e6: 0022 .2byte 0x22 + 1e8: 0500 .2byte 0x500 + 1ea: 8b00 .2byte 0x8b00 + 1ec: 001d .2byte 0x1d + 1ee: 0500 .2byte 0x500 + 1f0: 9c00 .2byte 0x9c00 + 1f2: 000e .2byte 0xe + 1f4: 0500 .2byte 0x500 + 1f6: d400 .2byte 0xd400 + 1f8: 05000003 lb x0,80(x0) # 50 <_start-0x7fffffb0> + 1fc: 3300 .2byte 0x3300 + 1fe: 0022 .2byte 0x22 + 200: 0500 .2byte 0x500 + 202: 5700 .2byte 0x5700 + 204: 0032 .2byte 0x32 + 206: 0500 .2byte 0x500 + 208: 5c00 .2byte 0x5c00 + 20a: 0500000f fence ow,unknown + 20e: fb00 .2byte 0xfb00 + 210: 002e .2byte 0x2e + 212: 0500 .2byte 0x500 + 214: b400 .2byte 0xb400 + 216: 002c .2byte 0x2c + 218: 0500 .2byte 0x500 + 21a: cf00 .2byte 0xcf00 + 21c: 05000017 auipc x0,0x5000 + 220: db00 .2byte 0xdb00 + 222: 0004 .2byte 0x4 + 224: 0500 .2byte 0x500 + 226: 2e00 .2byte 0x2e00 + 228: 0015 .2byte 0x15 + 22a: 0500 .2byte 0x500 + 22c: 1000 .2byte 0x1000 + 22e: 001c .2byte 0x1c + 230: 0500 .2byte 0x500 + 232: b800 .2byte 0xb800 + 234: 001d .2byte 0x1d + 236: 0500 .2byte 0x500 + 238: 7000 .2byte 0x7000 + 23a: 0028 .2byte 0x28 + 23c: 0500 .2byte 0x500 + 23e: a700 .2byte 0xa700 + 240: 002e .2byte 0x2e + 242: 0500 .2byte 0x500 + 244: 5d00 .2byte 0x5d00 + 246: 0018 .2byte 0x18 + 248: 0500 .2byte 0x500 + 24a: d700 .2byte 0xd700 + 24c: 0500002b .4byte 0x500002b + 250: 3c00 .2byte 0x3c00 + 252: 05000007 .4byte 0x5000007 + 256: e200 .2byte 0xe200 + 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: 0c00 .2byte 0xc00 + 26a: 0018 .2byte 0x18 + 26c: 0500 .2byte 0x500 + 26e: 7000 .2byte 0x7000 + 270: 001c .2byte 0x1c + 272: 0500 .2byte 0x500 + 274: 6100 .2byte 0x6100 + 276: 002e .2byte 0x2e + 278: 0500 .2byte 0x500 + 27a: f700 .2byte 0xf700 + 27c: 0014 .2byte 0x14 + 27e: 0500 .2byte 0x500 + 280: 9900 .2byte 0x9900 + 282: 0005 .2byte 0x5 + 284: 0500 .2byte 0x500 + 286: 0400 .2byte 0x400 + 288: 0030 .2byte 0x30 + 28a: 0500 .2byte 0x500 + 28c: eb00 .2byte 0xeb00 + 28e: 0032 .2byte 0x32 + 290: 0500 .2byte 0x500 + 292: 5700 .2byte 0x5700 + 294: 002a .2byte 0x2a + 296: 0500 .2byte 0x500 + 298: dd00 .2byte 0xdd00 + 29a: 0021 .2byte 0x21 + 29c: 0500 .2byte 0x500 + 29e: 0e00 .2byte 0xe00 + 2a0: 05000013 addi x0,x0,80 + 2a4: 2200 .2byte 0x2200 + 2a6: 0021 .2byte 0x21 + 2a8: 0500 .2byte 0x500 + 2aa: c100 .2byte 0xc100 + 2ac: 0031 .2byte 0x31 + 2ae: 0500 .2byte 0x500 + 2b0: b800 .2byte 0xb800 + 2b2: 000d .2byte 0xd + 2b4: 0500 .2byte 0x500 + 2b6: 0700 .2byte 0x700 + 2b8: 000d .2byte 0xd + 2ba: 0500 .2byte 0x500 + 2bc: 2b00 .2byte 0x2b00 + 2be: 0026 .2byte 0x26 + 2c0: 0500 .2byte 0x500 + 2c2: e400 .2byte 0xe400 + 2c4: 0500002f .4byte 0x500002f + 2c8: 3600 .2byte 0x3600 + 2ca: 001e .2byte 0x1e + 2cc: 0500 .2byte 0x500 + 2ce: b300 .2byte 0xb300 + 2d0: 0024 .2byte 0x24 + 2d2: 0500 .2byte 0x500 + 2d4: a900 .2byte 0xa900 + 2d6: 0028 .2byte 0x28 + 2d8: 0500 .2byte 0x500 + 2da: 5300 .2byte 0x5300 + 2dc: 000a .2byte 0xa + 2de: 0500 .2byte 0x500 + 2e0: 1000 .2byte 0x1000 + 2e2: 001a .2byte 0x1a + 2e4: 0500 .2byte 0x500 + 2e6: 9600 .2byte 0x9600 + 2e8: 002a .2byte 0x2a + 2ea: 0500 .2byte 0x500 + 2ec: 3500 .2byte 0x3500 + 2ee: 0034 .2byte 0x34 + 2f0: 0500 .2byte 0x500 + 2f2: 0900 .2byte 0x900 + 2f4: 001f 0500 7700 .byte 0x1f, 0x00, 0x00, 0x05, 0x00, 0x77 + 2fa: 0022 .2byte 0x22 + 2fc: 0500 .2byte 0x500 + 2fe: fc00 .2byte 0xfc00 + 300: 05000033 .4byte 0x5000033 + 304: a800 .2byte 0xa800 + 306: 001c .2byte 0x1c + 308: 0500 .2byte 0x500 + 30a: 1b00 .2byte 0x1b00 + 30c: 05000017 auipc x0,0x5000 + 310: 5000 .2byte 0x5000 + 312: 002d .2byte 0x2d + 314: 0500 .2byte 0x500 + 316: 3200 .2byte 0x3200 + 318: 002a .2byte 0x2a + 31a: 0500 .2byte 0x500 + 31c: 2e00 .2byte 0x2e00 + 31e: 0000 .2byte 0x0 + 320: 0500 .2byte 0x500 + 322: 6500 .2byte 0x6500 + 324: 0015 .2byte 0x15 + 326: 0500 .2byte 0x500 + 328: 3900 .2byte 0x3900 + 32a: 0024 .2byte 0x24 + 32c: 0500 .2byte 0x500 + 32e: 8800 .2byte 0x8800 + 330: 0008 .2byte 0x8 + 332: 0500 .2byte 0x500 + 334: 6300 .2byte 0x6300 + 336: 0022 .2byte 0x22 + 338: 0500 .2byte 0x500 + 33a: b800 .2byte 0xb800 + 33c: 0005 .2byte 0x5 + 33e: 0500 .2byte 0x500 + 340: 3000 .2byte 0x3000 + 342: 001c .2byte 0x1c + 344: 0500 .2byte 0x500 + 346: 1700 .2byte 0x1700 + 348: 0012 .2byte 0x12 + 34a: 0500 .2byte 0x500 + 34c: 9000 .2byte 0x9000 + 34e: 0028 .2byte 0x28 + 350: 0500 .2byte 0x500 + 352: 1b00 .2byte 0x1b00 + 354: 0008 .2byte 0x8 + 356: 0500 .2byte 0x500 + 358: 9c00 .2byte 0x9c00 + 35a: 0025 .2byte 0x25 + 35c: 0500 .2byte 0x500 + 35e: a800 .2byte 0xa800 + 360: 001d .2byte 0x1d + 362: 0500 .2byte 0x500 + 364: ea00 .2byte 0xea00 + 366: 0500000b .4byte 0x500000b + 36a: 6700 .2byte 0x6700 + 36c: 0009 .2byte 0x9 + 36e: 0500 .2byte 0x500 + 370: 5e00 .2byte 0x5e00 + 372: 001c .2byte 0x1c + 374: 0500 .2byte 0x500 + 376: 4200 .2byte 0x4200 + 378: 05000027 .4byte 0x5000027 + 37c: c800 .2byte 0xc800 + 37e: 0028 .2byte 0x28 + 380: 0500 .2byte 0x500 + 382: 7b00 .2byte 0x7b00 + 384: 0020 .2byte 0x20 + 386: 0500 .2byte 0x500 + 388: 7200 .2byte 0x7200 + 38a: 0002 .2byte 0x2 + 38c: 0500 .2byte 0x500 + 38e: d300 .2byte 0xd300 + 390: 0011 .2byte 0x11 + 392: 0500 .2byte 0x500 + 394: 3200 .2byte 0x3200 + 396: 05000023 sb x16,64(x0) # 40 <_start-0x7fffffc0> + 39a: 4300 .2byte 0x4300 + 39c: 0005 .2byte 0x5 + 39e: 0500 .2byte 0x500 + 3a0: dc00 .2byte 0xdc00 + 3a2: 001f 0500 ba00 .byte 0x1f, 0x00, 0x00, 0x05, 0x00, 0xba + 3a8: 000e .2byte 0xe + 3aa: 0500 .2byte 0x500 + 3ac: cc00 .2byte 0xcc00 + 3ae: 0029 .2byte 0x29 + 3b0: 0500 .2byte 0x500 + 3b2: be00 .2byte 0xbe00 + 3b4: 05000033 .4byte 0x5000033 + 3b8: 2400 .2byte 0x2400 + 3ba: 05000007 .4byte 0x5000007 + 3be: ab00 .2byte 0xab00 + 3c0: 0016 .2byte 0x16 + 3c2: 0500 .2byte 0x500 + 3c4: b700 .2byte 0xb700 + 3c6: 0010 .2byte 0x10 + 3c8: 0500 .2byte 0x500 + 3ca: 3b00 .2byte 0x3b00 + 3cc: 0020 .2byte 0x20 + 3ce: 0500 .2byte 0x500 + 3d0: 0100 .2byte 0x100 + 3d2: 0022 .2byte 0x22 + 3d4: 0500 .2byte 0x500 + 3d6: d700 .2byte 0xd700 + 3d8: 000c .2byte 0xc + 3da: 0500 .2byte 0x500 + 3dc: 4900 .2byte 0x4900 + 3de: 001c .2byte 0x1c + 3e0: 0500 .2byte 0x500 + 3e2: fe00 .2byte 0xfe00 + 3e4: 0022 .2byte 0x22 + 3e6: 0500 .2byte 0x500 + 3e8: 8800 .2byte 0x8800 + 3ea: 000c .2byte 0xc + 3ec: 0500 .2byte 0x500 + 3ee: 4a00 .2byte 0x4a00 + 3f0: 0016 .2byte 0x16 + 3f2: 0500 .2byte 0x500 + 3f4: 5d00 .2byte 0x5d00 + 3f6: 0016 .2byte 0x16 + 3f8: 0500 .2byte 0x500 + 3fa: ed00 .2byte 0xed00 + 3fc: 001e .2byte 0x1e + 3fe: 0500 .2byte 0x500 + 400: c200 .2byte 0xc200 + 402: 0020 .2byte 0x20 + 404: 0500 .2byte 0x500 + 406: b200 .2byte 0xb200 + 408: 0006 .2byte 0x6 + 40a: 0500 .2byte 0x500 + 40c: 6c00 .2byte 0x6c00 + 40e: 05000017 auipc x0,0x5000 + 412: 3300 .2byte 0x3300 + 414: 0016 .2byte 0x16 + 416: 0500 .2byte 0x500 + 418: 6d00 .2byte 0x6d00 + 41a: 0008 .2byte 0x8 + 41c: 0500 .2byte 0x500 + 41e: d700 .2byte 0xd700 + 420: 001a .2byte 0x1a + 422: 0500 .2byte 0x500 + 424: 2400 .2byte 0x2400 + 426: 000a .2byte 0xa + 428: 0500 .2byte 0x500 + 42a: 4a00 .2byte 0x4a00 + 42c: 05000033 .4byte 0x5000033 + 430: 6f00 .2byte 0x6f00 + 432: 0031 .2byte 0x31 + 434: 0500 .2byte 0x500 + 436: fd00 .2byte 0xfd00 + 438: 0500002b .4byte 0x500002b + 43c: 7e00 .2byte 0x7e00 + 43e: 0015 .2byte 0x15 + 440: 0500 .2byte 0x500 + 442: 4600 .2byte 0x4600 + 444: 0026 .2byte 0x26 + 446: 0500 .2byte 0x500 + 448: de00 .2byte 0xde00 + 44a: 000e .2byte 0xe + 44c: 0500 .2byte 0x500 + 44e: 6f00 .2byte 0x6f00 + 450: 000c .2byte 0xc + 452: 0500 .2byte 0x500 + 454: 5c00 .2byte 0x5c00 + 456: 0021 .2byte 0x21 + 458: 0500 .2byte 0x500 + 45a: 1f00 .2byte 0x1f00 + 45c: 000c .2byte 0xc + 45e: 0500 .2byte 0x500 + 460: 4400 .2byte 0x4400 + 462: 0004 .2byte 0x4 + 464: 0500 .2byte 0x500 + 466: 2b00 .2byte 0x2b00 + 468: 0025 .2byte 0x25 + 46a: 0500 .2byte 0x500 + 46c: 4100 .2byte 0x4100 + 46e: 0001 .2byte 0x1 + 470: 0500 .2byte 0x500 + 472: 3800 .2byte 0x3800 + 474: 000d .2byte 0xd + 476: 0500 .2byte 0x500 + 478: f300 .2byte 0xf300 + 47a: 0028 .2byte 0x28 + 47c: 0500 .2byte 0x500 + 47e: 0c00 .2byte 0xc00 + 480: 0005 .2byte 0x5 + 482: 0500 .2byte 0x500 + 484: ac00 .2byte 0xac00 + 486: 0030 .2byte 0x30 + 488: 0500 .2byte 0x500 + 48a: 3600 .2byte 0x3600 + 48c: 0500000b .4byte 0x500000b + 490: 2900 .2byte 0x2900 + 492: 0001 .2byte 0x1 + 494: 0500 .2byte 0x500 + 496: 1500 .2byte 0x1500 + 498: 0500001b .4byte 0x500001b + 49c: 1b00 .2byte 0x1b00 + 49e: 0016 .2byte 0x16 + 4a0: 0500 .2byte 0x500 + 4a2: 0000 .2byte 0x0 + 4a4: 0500000b .4byte 0x500000b + 4a8: 0700 .2byte 0x700 + 4aa: 0035 .2byte 0x35 + 4ac: 0500 .2byte 0x500 + 4ae: d500 .2byte 0xd500 + 4b0: 0010 .2byte 0x10 + 4b2: 0500 .2byte 0x500 + 4b4: e100 .2byte 0xe100 + 4b6: 05000013 addi x0,x0,80 + 4ba: 0b00 .2byte 0xb00 + 4bc: 0026 .2byte 0x26 + 4be: 0500 .2byte 0x500 + 4c0: e100 .2byte 0xe100 + 4c2: 0025 .2byte 0x25 + 4c4: 0500 .2byte 0x500 + 4c6: 1800 .2byte 0x1800 + 4c8: 002a .2byte 0x2a + 4ca: 0500 .2byte 0x500 + 4cc: 8b00 .2byte 0x8b00 + 4ce: 0018 .2byte 0x18 + 4d0: 0500 .2byte 0x500 + 4d2: b400 .2byte 0xb400 + 4d4: 05000023 sb x16,64(x0) # 40 <_start-0x7fffffc0> + 4d8: bf00 .2byte 0xbf00 + 4da: 0016 .2byte 0x16 + 4dc: 0500 .2byte 0x500 + 4de: d500 .2byte 0xd500 + 4e0: 001e .2byte 0x1e + 4e2: 0500 .2byte 0x500 + 4e4: 1800 .2byte 0x1800 + 4e6: 0015 .2byte 0x15 + 4e8: 0500 .2byte 0x500 + 4ea: d100 .2byte 0xd100 + 4ec: 002d .2byte 0x2d + 4ee: 0500 .2byte 0x500 + 4f0: c100 .2byte 0xc100 + 4f2: 0025 .2byte 0x25 + 4f4: 0500 .2byte 0x500 + 4f6: 6300 .2byte 0x6300 + 4f8: 000d .2byte 0xd + 4fa: 0500 .2byte 0x500 + 4fc: 3900 .2byte 0x3900 + 4fe: 05000013 addi x0,x0,80 + 502: 2800 .2byte 0x2800 + 504: 0500000b .4byte 0x500000b + 508: dd00 .2byte 0xdd00 + 50a: 0030 .2byte 0x30 + 50c: 0500 .2byte 0x500 + 50e: b200 .2byte 0xb200 + 510: 0000 .2byte 0x0 + 512: 0500 .2byte 0x500 + 514: d700 .2byte 0xd700 + 516: 002a .2byte 0x2a + 518: 0500 .2byte 0x500 + 51a: 5b00 .2byte 0x5b00 + 51c: 0012 .2byte 0x12 + 51e: 0500 .2byte 0x500 + 520: e800 .2byte 0xe800 + 522: 0022 .2byte 0x22 + 524: 0500 .2byte 0x500 + 526: 2300 .2byte 0x2300 + 528: 0014 .2byte 0x14 + 52a: 0500 .2byte 0x500 + 52c: e800 .2byte 0xe800 + 52e: 001d .2byte 0x1d + 530: 0500 .2byte 0x500 + 532: 3e00 .2byte 0x3e00 + 534: 0500002b .4byte 0x500002b + 538: 7500 .2byte 0x7500 + 53a: 002d .2byte 0x2d + 53c: 0500 .2byte 0x500 + 53e: 5400 .2byte 0x5400 + 540: 0004 .2byte 0x4 + 542: 0500 .2byte 0x500 + 544: f200 .2byte 0xf200 + 546: 0034 .2byte 0x34 + 548: 0500 .2byte 0x500 + 54a: 4e00 .2byte 0x4e00 + 54c: 0500001b .4byte 0x500001b + 550: 3800 .2byte 0x3800 + 552: 002e .2byte 0x2e + 554: 0500 .2byte 0x500 + 556: e200 .2byte 0xe200 + 558: 0005 .2byte 0x5 + 55a: 0500 .2byte 0x500 + 55c: 5800 .2byte 0x5800 + 55e: 0005 .2byte 0x5 + 560: 0500 .2byte 0x500 + 562: e300 .2byte 0xe300 + 564: 0034 .2byte 0x34 + 566: 0500 .2byte 0x500 + 568: 5a00 .2byte 0x5a00 + 56a: 0002 .2byte 0x2 + 56c: 0500 .2byte 0x500 + 56e: 5a00 .2byte 0x5a00 + 570: 0014 .2byte 0x14 + 572: 0500 .2byte 0x500 + 574: 8200 .2byte 0x8200 + 576: 0500001b .4byte 0x500001b + 57a: 9b00 .2byte 0x9b00 + 57c: 0500002f .4byte 0x500002f + 580: 1f00 .2byte 0x1f00 + 582: 0035 .2byte 0x35 + 584: 0500 .2byte 0x500 + 586: 2d00 .2byte 0x2d00 + 588: 0019 .2byte 0x19 + 58a: 0500 .2byte 0x500 + 58c: 7200 .2byte 0x7200 + 58e: 0010 .2byte 0x10 + 590: 0500 .2byte 0x500 + 592: bf00 .2byte 0xbf00 + 594: 0026 .2byte 0x26 + 596: 0500 .2byte 0x500 + 598: e900 .2byte 0xe900 + 59a: 002c .2byte 0x2c + 59c: 0500 .2byte 0x500 + 59e: 7100 .2byte 0x7100 + 5a0: 0032 .2byte 0x32 + 5a2: 0500 .2byte 0x500 + 5a4: e500 .2byte 0xe500 + 5a6: 0031 .2byte 0x31 + 5a8: 0500 .2byte 0x500 + 5aa: f200 .2byte 0xf200 + 5ac: 002d .2byte 0x2d + 5ae: 0500 .2byte 0x500 + 5b0: f000 .2byte 0xf000 + 5b2: 000d .2byte 0xd + 5b4: 0500 .2byte 0x500 + 5b6: cf00 .2byte 0xcf00 + 5b8: 0016 .2byte 0x16 + 5ba: 0500 .2byte 0x500 + 5bc: fa00 .2byte 0xfa00 + 5be: 0001 .2byte 0x1 + 5c0: 0500 .2byte 0x500 + 5c2: 5f00 .2byte 0x5f00 + 5c4: 000c .2byte 0xc + 5c6: 0500 .2byte 0x500 + 5c8: 1800 .2byte 0x1800 + 5ca: 05000023 sb x16,64(x0) # 40 <_start-0x7fffffc0> + 5ce: 8c00 .2byte 0x8c00 + 5d0: 001c .2byte 0x1c + 5d2: 0500 .2byte 0x500 + 5d4: 6800 .2byte 0x6800 + 5d6: 000e .2byte 0xe + 5d8: 0500 .2byte 0x500 + 5da: 6a00 .2byte 0x6a00 + 5dc: 05000033 .4byte 0x5000033 + 5e0: 0a00 .2byte 0xa00 + 5e2: 0029 .2byte 0x29 + 5e4: 0500 .2byte 0x500 + 5e6: bf00 .2byte 0xbf00 + 5e8: 0500002b .4byte 0x500002b + 5ec: 9900 .2byte 0x9900 + 5ee: 0011 .2byte 0x11 + 5f0: 0500 .2byte 0x500 + 5f2: 2f00 .2byte 0x2f00 + 5f4: 001f 0500 8000 .byte 0x1f, 0x00, 0x00, 0x05, 0x00, 0x80 + 5fa: 05000007 .4byte 0x5000007 + 5fe: 7100 .2byte 0x7100 + 600: 0012 .2byte 0x12 + 602: 0500 .2byte 0x500 + 604: 9b00 .2byte 0x9b00 + 606: 0008 .2byte 0x8 + 608: 0500 .2byte 0x500 + 60a: 9000 .2byte 0x9000 + 60c: 0034 .2byte 0x34 + 60e: 0500 .2byte 0x500 + 610: bd00 .2byte 0xbd00 + 612: 001e .2byte 0x1e + 614: 0500 .2byte 0x500 + 616: 6900 .2byte 0x6900 + 618: 0025 .2byte 0x25 + 61a: 0500 .2byte 0x500 + 61c: 8000 .2byte 0x8000 + 61e: 0009 .2byte 0x9 + 620: 0500 .2byte 0x500 + 622: cc00 .2byte 0xcc00 + 624: 0001 .2byte 0x1 + 626: 0500 .2byte 0x500 + 628: c100 .2byte 0xc100 + 62a: 0014 .2byte 0x14 + 62c: 0500 .2byte 0x500 + 62e: 7b00 .2byte 0x7b00 + 630: 05000013 addi x0,x0,80 + 634: ba00 .2byte 0xba00 + 636: 05000007 .4byte 0x5000007 + 63a: 0500 .2byte 0x500 + 63c: 05000017 auipc x0,0x5000 + 640: b800 .2byte 0xb800 + 642: 0032 .2byte 0x32 + 644: 0500 .2byte 0x500 + 646: 3b00 .2byte 0x3b00 + 648: 000c .2byte 0xc + 64a: 0500 .2byte 0x500 + 64c: 8300 .2byte 0x8300 + 64e: 05000033 .4byte 0x5000033 + 652: 8900 .2byte 0x8900 + 654: 05000003 lb x0,80(x0) # 50 <_start-0x7fffffb0> + 658: a100 .2byte 0xa100 + 65a: 0500001b .4byte 0x500001b + 65e: d000 .2byte 0xd000 + 660: 05000023 sb x16,64(x0) # 40 <_start-0x7fffffc0> + 664: f900 .2byte 0xf900 + 666: 001f 0500 af00 .byte 0x1f, 0x00, 0x00, 0x05, 0x00, 0xaf + 66c: 000a .2byte 0xa + 66e: 0500 .2byte 0x500 + 670: 5700 .2byte 0x5700 + 672: 0000 .2byte 0x0 + 674: 0500 .2byte 0x500 + 676: 0500 .2byte 0x500 + 678: 000c .2byte 0xc + 67a: 0500 .2byte 0x500 + 67c: 5500 .2byte 0x5500 + 67e: 001e .2byte 0x1e + 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: af00 .2byte 0xaf00 + 690: 002d .2byte 0x2d + 692: 0500 .2byte 0x500 + 694: 1800 .2byte 0x1800 + 696: 0011 .2byte 0x11 + 698: 0500 .2byte 0x500 + 69a: 9b00 .2byte 0x9b00 + 69c: 0000 .2byte 0x0 + 69e: 0500 .2byte 0x500 + 6a0: 0f00 .2byte 0xf00 + 6a2: 0500000f fence ow,unknown + 6a6: 4d00 .2byte 0x4d00 + 6a8: 05000013 addi x0,x0,80 + 6ac: f100 .2byte 0xf100 + 6ae: 0018 .2byte 0x18 + 6b0: 0500 .2byte 0x500 + 6b2: 7700 .2byte 0x7700 + 6b4: 05000027 .4byte 0x5000027 + 6b8: 0800 .2byte 0x800 + 6ba: 0004 .2byte 0x4 + 6bc: 0500 .2byte 0x500 + 6be: 8300 .2byte 0x8300 + 6c0: 0500000b .4byte 0x500000b + 6c4: 0700 .2byte 0x700 + 6c6: 05000033 .4byte 0x5000033 + 6ca: e000 .2byte 0xe000 + 6cc: 0014 .2byte 0x14 + 6ce: 0500 .2byte 0x500 + 6d0: 3900 .2byte 0x3900 + 6d2: 000e .2byte 0xe + 6d4: 0500 .2byte 0x500 + 6d6: 3d00 .2byte 0x3d00 + 6d8: 0000 .2byte 0x0 + 6da: 0500 .2byte 0x500 + 6dc: 9600 .2byte 0x9600 + 6de: 000a .2byte 0xa + 6e0: 0500 .2byte 0x500 + 6e2: e200 .2byte 0xe200 + 6e4: 0001 .2byte 0x1 + 6e6: 0500 .2byte 0x500 + 6e8: 6400 .2byte 0x6400 + 6ea: 0011 .2byte 0x11 + 6ec: 0500 .2byte 0x500 + 6ee: ce00 .2byte 0xce00 + 6f0: 0500000b .4byte 0x500000b + 6f4: 9100 .2byte 0x9100 + 6f6: 001f 0500 1f00 .byte 0x1f, 0x00, 0x00, 0x05, 0x00, 0x1f + 6fc: 000d .2byte 0xd + 6fe: 0500 .2byte 0x500 + 700: fd00 .2byte 0xfd00 + 702: 0010 .2byte 0x10 + 704: 0500 .2byte 0x500 + 706: d900 .2byte 0xd900 + 708: 0028 .2byte 0x28 + 70a: 0500 .2byte 0x500 + 70c: e900 .2byte 0xe900 + 70e: 0002 .2byte 0x2 + 710: 0500 .2byte 0x500 + 712: 1800 .2byte 0x1800 + 714: 0031 .2byte 0x31 + 716: 0500 .2byte 0x500 + 718: c800 .2byte 0xc800 + 71a: 0015 .2byte 0x15 + 71c: 0500 .2byte 0x500 + 71e: 5b00 .2byte 0x5b00 + 720: 0026 .2byte 0x26 + 722: 0500 .2byte 0x500 + 724: 3e00 .2byte 0x3e00 + 726: 0030 .2byte 0x30 + 728: 0500 .2byte 0x500 + 72a: 1d00 .2byte 0x1d00 + 72c: 0034 .2byte 0x34 + 72e: 0500 .2byte 0x500 + 730: 9600 .2byte 0x9600 + 732: 0014 .2byte 0x14 + 734: 0500 .2byte 0x500 + 736: 0900 .2byte 0x900 + 738: 000a .2byte 0xa + 73a: 0500 .2byte 0x500 + 73c: 7600 .2byte 0x7600 + 73e: 0034 .2byte 0x34 + 740: 0500 .2byte 0x500 + 742: e600 .2byte 0xe600 + 744: 05000017 auipc x0,0x5000 + 748: bd00 .2byte 0xbd00 + 74a: 05000017 auipc x0,0x5000 + 74e: f800 .2byte 0xf800 + 750: 0024 .2byte 0x24 + 752: 0500 .2byte 0x500 + 754: 7e00 .2byte 0x7e00 + 756: 0024 .2byte 0x24 + 758: 0500 .2byte 0x500 + 75a: 1100 .2byte 0x1100 + 75c: 0001 .2byte 0x1 + 75e: 0500 .2byte 0x500 + 760: a700 .2byte 0xa700 + 762: 0031 .2byte 0x31 + 764: 0500 .2byte 0x500 + 766: 2800 .2byte 0x2800 + 768: 0002 .2byte 0x2 + 76a: 0500 .2byte 0x500 + 76c: ab00 .2byte 0xab00 + 76e: 0002 .2byte 0x2 + 770: 0500 .2byte 0x500 + 772: fa00 .2byte 0xfa00 + 774: 0031 .2byte 0x31 + 776: 0500 .2byte 0x500 + 778: 6b00 .2byte 0x6b00 + 77a: 001a .2byte 0x1a + 77c: 0500 .2byte 0x500 + 77e: ad00 .2byte 0xad00 + 780: 0012 .2byte 0x12 + 782: 0500 .2byte 0x500 + 784: 7300 .2byte 0x7300 + 786: 000d .2byte 0xd + 788: 0500 .2byte 0x500 + 78a: 4d00 .2byte 0x4d00 + 78c: 0015 .2byte 0x15 + 78e: 0500 .2byte 0x500 + 790: b400 .2byte 0xb400 + 792: 0009 .2byte 0x9 + 794: 0500 .2byte 0x500 + 796: 8000 .2byte 0x8000 + 798: 0500002f .4byte 0x500002f + 79c: 7100 .2byte 0x7100 + 79e: 0018 .2byte 0x18 + 7a0: 0500 .2byte 0x500 + 7a2: f800 .2byte 0xf800 + 7a4: 0500001b .4byte 0x500001b + 7a8: ea00 .2byte 0xea00 + 7aa: 0500000f fence ow,unknown + 7ae: c600 .2byte 0xc600 + 7b0: 000a .2byte 0xa + 7b2: 0500 .2byte 0x500 + 7b4: 5400 .2byte 0x5400 + 7b6: 0010 .2byte 0x10 + 7b8: 0500 .2byte 0x500 + 7ba: 7300 .2byte 0x7300 + 7bc: 0006 .2byte 0x6 + 7be: 0500 .2byte 0x500 + 7c0: dd00 .2byte 0xdd00 + 7c2: 0024 .2byte 0x24 + 7c4: 0500 .2byte 0x500 + 7c6: 8d00 .2byte 0x8d00 + 7c8: 0031 .2byte 0x31 + 7ca: 0500 .2byte 0x500 + 7cc: 2c00 .2byte 0x2c00 + 7ce: 001a .2byte 0x1a + 7d0: 0500 .2byte 0x500 + 7d2: 9d00 .2byte 0x9d00 + 7d4: 05000013 addi x0,x0,80 + 7d8: 4400 .2byte 0x4400 + 7da: 05000023 sb x16,64(x0) # 40 <_start-0x7fffffc0> + 7de: 6700 .2byte 0x6700 + 7e0: 0001 .2byte 0x1 + 7e2: 0500 .2byte 0x500 + 7e4: cb00 .2byte 0xcb00 + 7e6: 0000 .2byte 0x0 + 7e8: 0500 .2byte 0x500 + 7ea: fc00 .2byte 0xfc00 + 7ec: 0500000f fence ow,unknown + 7f0: bd00 .2byte 0xbd00 + 7f2: 001a .2byte 0x1a + 7f4: 0500 .2byte 0x500 + 7f6: 3300 .2byte 0x3300 + 7f8: 0500001b .4byte 0x500001b + 7fc: 0800 .2byte 0x800 + 7fe: 000e .2byte 0xe + 800: 0500 .2byte 0x500 + 802: 6600 .2byte 0x6600 + 804: 05000013 addi x0,x0,80 + 808: 7700 .2byte 0x7700 + 80a: 0029 .2byte 0x29 + 80c: 0500 .2byte 0x500 + 80e: e600 .2byte 0xe600 + 810: 0011 .2byte 0x11 + 812: 0500 .2byte 0x500 + 814: ee00 .2byte 0xee00 + 816: 0012 .2byte 0x12 + 818: 0500 .2byte 0x500 + 81a: 0e00 .2byte 0xe00 + 81c: 0006 .2byte 0x6 + 81e: 0500 .2byte 0x500 + 820: fa00 .2byte 0xfa00 + 822: 0030 .2byte 0x30 + 824: 0500 .2byte 0x500 + 826: 3b00 .2byte 0x3b00 + 828: 0006 .2byte 0x6 + 82a: 0500 .2byte 0x500 + 82c: 8900 .2byte 0x8900 + 82e: 0002 .2byte 0x2 + 830: 0500 .2byte 0x500 + 832: 8e00 .2byte 0x8e00 + 834: 0029 .2byte 0x29 + 836: 0500 .2byte 0x500 + 838: a700 .2byte 0xa700 + 83a: 0015 .2byte 0x15 + 83c: 0500 .2byte 0x500 + 83e: ca00 .2byte 0xca00 + 840: 002c .2byte 0x2c + 842: 0500 .2byte 0x500 + 844: 7f00 .2byte 0x7f00 + 846: 000e .2byte 0xe + 848: 0500 .2byte 0x500 + 84a: 9f00 .2byte 0x9f00 + 84c: 05000017 auipc x0,0x5000 + 850: b800 .2byte 0xb800 + 852: 002a .2byte 0x2a + 854: 0500 .2byte 0x500 + 856: d900 .2byte 0xd900 + 858: 0019 .2byte 0x19 + 85a: 0500 .2byte 0x500 + 85c: c300 .2byte 0xc300 + 85e: 0030 .2byte 0x30 + 860: 0500 .2byte 0x500 + 862: 2200 .2byte 0x2200 + 864: 0029 .2byte 0x29 + 866: 0500 .2byte 0x500 + 868: 5600 .2byte 0x5600 + 86a: 0029 .2byte 0x29 + 86c: 0500 .2byte 0x500 + 86e: e600 .2byte 0xe600 + 870: 001a .2byte 0x1a + 872: 0500 .2byte 0x500 + 874: 7a00 .2byte 0x7a00 + 876: 002a .2byte 0x2a + 878: 0500 .2byte 0x500 + 87a: 6e00 .2byte 0x6e00 + 87c: 001f 0500 2800 .byte 0x1f, 0x00, 0x00, 0x05, 0x00, 0x28 + 882: 05000003 lb x0,80(x0) # 50 <_start-0x7fffffb0> + 886: 4500 .2byte 0x4500 + 888: 0500000f fence ow,unknown + 88c: 9d00 .2byte 0x9d00 + 88e: 002e .2byte 0x2e + 890: 0500 .2byte 0x500 + 892: fe00 .2byte 0xfe00 + 894: 0012 .2byte 0x12 + 896: 0500 .2byte 0x500 + 898: 3d00 .2byte 0x3d00 + 89a: 0029 .2byte 0x29 + 89c: 0500 .2byte 0x500 + 89e: 4200 .2byte 0x4200 + 8a0: 0002 .2byte 0x2 + 8a2: 0500 .2byte 0x500 + 8a4: 0700 .2byte 0x700 + 8a6: 0016 .2byte 0x16 + 8a8: 0500 .2byte 0x500 + 8aa: 9c00 .2byte 0x9c00 + 8ac: 0026 .2byte 0x26 + 8ae: 0500 .2byte 0x500 + 8b0: 5c00 .2byte 0x5c00 + 8b2: 0031 .2byte 0x31 + 8b4: 0000 .2byte 0x0 + 8b6: 0005 .2byte 0x5 + 8b8: 0500 .2byte 0x500 + 8ba: d11d .2byte 0xd11d + 8bc: 0014 .2byte 0x14 + 8be: 0600 .2byte 0x600 + 8c0: 7164 .2byte 0x7164 + 8c2: 0000 .2byte 0x0 + 8c4: 0500 .2byte 0x500 + 8c6: 4365 .2byte 0x4365 + 8c8: 0600002f .4byte 0x600002f + 8cc: 0066 .2byte 0x66 + 8ce: 000a .2byte 0xa + 8d0: 0500 .2byte 0x500 + 8d2: 000cab67 .4byte 0xcab67 + 8d6: 0600 .2byte 0x600 + 8d8: 706a .2byte 0x706a + 8da: 0000 .2byte 0x0 + 8dc: 0500 .2byte 0x500 + 8de: 0004f46b .4byte 0x4f46b + 8e2: 0600 .2byte 0x600 + 8e4: ca6e .2byte 0xca6e + 8e6: 05000003 lb x0,80(x0) # 50 <_start-0x7fffffb0> + 8ea: 0030946f jal x8,a0ec <_start-0x7fff5f14> + 8ee: 0600 .2byte 0x600 + 8f0: aa70 .2byte 0xaa70 + 8f2: 05000023 sb x16,64(x0) # 40 <_start-0x7fffffc0> + 8f6: 6d71 .2byte 0x6d71 + 8f8: 0019 .2byte 0x19 + 8fa: 0600 .2byte 0x600 + 8fc: c974 .2byte 0xc974 + 8fe: 05000003 lb x0,80(x0) # 50 <_start-0x7fffffb0> + 902: 5675 .2byte 0x5675 + 904: 0028 .2byte 0x28 + 906: 0600 .2byte 0x600 + 908: 5578 .2byte 0x5578 + 90a: 05000027 .4byte 0x5000027 + 90e: 5f79 .2byte 0x5f79 + 910: 06000027 .4byte 0x6000027 + 914: 347a .2byte 0x347a + 916: 0500002b .4byte 0x500002b + 91a: 0034c87b .4byte 0x34c87b + 91e: 0600 .2byte 0x600 + 920: 547e .2byte 0x547e + 922: 05000027 .4byte 0x5000027 + 926: 002fb27f 01820600 .byte 0x7f, 0xb2, 0x2f, 0x00, 0x00, 0x06, 0x82, 0x01, 0xe1, 0x32, 0x00, 0x00, 0x05, 0x83, 0x01, 0xd9 + 92e: 000032e1 d9018305 + 936: 0018 .2byte 0x18 + 938: 0600 .2byte 0x600 + 93a: 0184 .2byte 0x184 + 93c: 00003183 .4byte 0x3183 + 940: 8505 .2byte 0x8505 + 942: 4101 .2byte 0x4101 + 944: 0021 .2byte 0x21 + 946: 0600 .2byte 0x600 + 948: 0188 .2byte 0x188 + 94a: 32e0 .2byte 0x32e0 + 94c: 0000 .2byte 0x0 + 94e: 8905 .2byte 0x8905 + 950: 3d01 .2byte 0x3d01 + 952: 0032 .2byte 0x32 + 954: 0600 .2byte 0x600 + 956: 018c .2byte 0x18c + 958: 2a09 .2byte 0x2a09 + 95a: 0000 .2byte 0x0 + 95c: 8d05 .2byte 0x8d05 + 95e: 7301 .2byte 0x7301 + 960: 0016 .2byte 0x16 + 962: 0600 .2byte 0x600 + 964: 018e .2byte 0x18e + 966: 19ca .2byte 0x19ca + 968: 0000 .2byte 0x0 + 96a: 8f05 .2byte 0x8f05 + 96c: 9801 .2byte 0x9801 + 96e: 001e .2byte 0x1e + 970: 0600 .2byte 0x600 + 972: 0190 .2byte 0x190 + 974: 2a08 .2byte 0x2a08 + 976: 0000 .2byte 0x0 + 978: 9105 .2byte 0x9105 + 97a: 0001 .2byte 0x1 + 97c: 06000007 .4byte 0x6000007 + 980: 0192 .2byte 0x192 + 982: 000026af .4byte 0x26af + 986: 9305 .2byte 0x9305 + 988: a801 .2byte 0xa801 + 98a: 0001 .2byte 0x1 + 98c: 0600 .2byte 0x600 + 98e: 0194 .2byte 0x194 + 990: 00000157 .4byte 0x157 + 994: 9505 .2byte 0x9505 + 996: 1301 .2byte 0x1301 + 998: 0009 .2byte 0x9 + 99a: 0600 .2byte 0x600 + 99c: 0196 .2byte 0x196 + 99e: 26ae .2byte 0x26ae + 9a0: 0000 .2byte 0x0 + 9a2: 9705 .2byte 0x9705 + 9a4: fc01 .2byte 0xfc01 + 9a6: 0020 .2byte 0x20 + 9a8: 0600 .2byte 0x600 + 9aa: 0198 .2byte 0x198 + 9ac: 0f7c .2byte 0xf7c + 9ae: 0000 .2byte 0x0 + 9b0: 9905 .2byte 0x9905 + 9b2: 5201 .2byte 0x5201 + 9b4: 0034 .2byte 0x34 + 9b6: 0600 .2byte 0x600 + 9b8: 019a .2byte 0x19a + 9ba: 3084 .2byte 0x3084 + 9bc: 0000 .2byte 0x0 + 9be: 9b05 .2byte 0x9b05 + 9c0: fd01 .2byte 0xfd01 + 9c2: 06000027 .4byte 0x6000027 + 9c6: 019c .2byte 0x19c + 9c8: 00000f7b .4byte 0xf7b + 9cc: 9d05 .2byte 0x9d05 + 9ce: b501 .2byte 0xb501 + 9d0: 0004 .2byte 0x4 + 9d2: 0600 .2byte 0x600 + 9d4: 019e .2byte 0x19e + 9d6: 14b1 .2byte 0x14b1 + 9d8: 0000 .2byte 0x0 + 9da: 9f05 .2byte 0x9f05 + 9dc: 2c01 .2byte 0x2c01 + 9de: 002d .2byte 0x2d + 9e0: 0600 .2byte 0x600 + 9e2: 01a0 .2byte 0x1a0 + 9e4: 09ce .2byte 0x9ce + 9e6: 0000 .2byte 0x0 + 9e8: a105 .2byte 0xa105 + 9ea: 8301 .2byte 0x8301 + 9ec: 06000023 sb x0,96(x0) # 60 <_start-0x7fffffa0> + 9f0: 01a2 .2byte 0x1a2 + 9f2: 14b0 .2byte 0x14b0 + 9f4: 0000 .2byte 0x0 + 9f6: a305 .2byte 0xa305 + 9f8: 6501 .2byte 0x6501 + 9fa: 001d .2byte 0x1d + 9fc: 0600 .2byte 0x600 + 9fe: 01a5 .2byte 0x1a5 + a00: 1020 .2byte 0x1020 + a02: 0000 .2byte 0x0 + a04: a605 .2byte 0xa605 + a06: 6301 .2byte 0x6301 + a08: 0600000b .4byte 0x600000b + a0c: 1f8301a7 .4byte 0x1f8301a7 + a10: 0000 .2byte 0x0 + a12: a805 .2byte 0xa805 + a14: 4901 .2byte 0x4901 + a16: 06000017 auipc x0,0x6000 + a1a: 01a9 .2byte 0x1a9 + a1c: 101f 0000 aa05 .byte 0x1f, 0x10, 0x00, 0x00, 0x05, 0xaa + a22: 7501 .2byte 0x7501 + a24: 0600002b .4byte 0x600002b + a28: 32d101ab .4byte 0x32d101ab + a2c: 0000 .2byte 0x0 + a2e: ac05 .2byte 0xac05 + a30: 5601 .2byte 0x5601 + 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: 8801 .2byte 0x8801 + a40: 0019 .2byte 0x19 + a42: 0600 .2byte 0x600 + a44: 32d001af .4byte 0x32d001af + a48: 0000 .2byte 0x0 + a4a: b005 .2byte 0xb005 + a4c: 1f01 .2byte 0x1f01 + a4e: 0600002f .4byte 0x600002f + a52: 01b1 .2byte 0x1b1 + a54: 00001e6f jal x28,1a54 <_start-0x7fffe5ac> + a58: b205 .2byte 0xb205 + a5a: 7401 .2byte 0x7401 + a5c: 0014 .2byte 0x14 + a5e: 0600 .2byte 0x600 + a60: 1dd901b3 .4byte 0x1dd901b3 + a64: 0000 .2byte 0x0 + a66: b405 .2byte 0xb405 + a68: cd01 .2byte 0xcd01 + a6a: 002e .2byte 0x2e + a6c: 0600 .2byte 0x600 + a6e: 01b5 .2byte 0x1b5 + a70: 1e6e .2byte 0x1e6e + a72: 0000 .2byte 0x0 + a74: b605 .2byte 0xb605 + a76: 2a01 .2byte 0x2a01 + a78: 0018 .2byte 0x18 + a7a: 0600 .2byte 0x600 + a7c: 251401b7 lui x3,0x25140 + a80: 0000 .2byte 0x0 + a82: b805 .2byte 0xb805 + a84: bb01 .2byte 0xbb01 + a86: 0021 .2byte 0x21 + a88: 0600 .2byte 0x600 + a8a: 01b9 .2byte 0x1b9 + a8c: 0f8c .2byte 0xf8c + a8e: 0000 .2byte 0x0 + a90: ba05 .2byte 0xba05 + a92: 0e01 .2byte 0xe01 + a94: 0024 .2byte 0x24 + a96: 0600 .2byte 0x600 + a98: 251301bb .4byte 0x251301bb + a9c: 0000 .2byte 0x0 + a9e: bc05 .2byte 0xbc05 + aa0: ba01 .2byte 0xba01 + aa2: 0600000f fence or,unknown + aa6: 34bd01bf c0050000 .8byte 0xc005000034bd01bf + aae: 4d01 .2byte 0x4d01 + ab0: 0009 .2byte 0x9 + ab2: 0600 .2byte 0x600 + ab4: 01c1 .2byte 0x1c1 + ab6: 1fee .2byte 0x1fee + ab8: 0000 .2byte 0x0 + aba: c205 .2byte 0xc205 + abc: ad01 .2byte 0xad01 + abe: 0019 .2byte 0x19 + ac0: 0600 .2byte 0x600 + ac2: 01c5 .2byte 0x1c5 + ac4: 34bc .2byte 0x34bc + ac6: 0000 .2byte 0x0 + ac8: c605 .2byte 0xc605 + aca: dc01 .2byte 0xdc01 + acc: 0600001b .4byte 0x600001b + ad0: 01c9 .2byte 0x1c9 + ad2: 25b6 .2byte 0x25b6 + ad4: 0000 .2byte 0x0 + ad6: ca05 .2byte 0xca05 + ad8: 5901 .2byte 0x5901 + ada: 0006 .2byte 0x6 + adc: 0600 .2byte 0x600 + ade: 101401cb .4byte 0x101401cb + 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: 25b5 .2byte 0x25b5 + af0: 0000 .2byte 0x0 + af2: ce05 .2byte 0xce05 + af4: ec01 .2byte 0xec01 + af6: 06000003 lb x0,96(x0) # 60 <_start-0x7fffffa0> + afa: 01d2 .2byte 0x1d2 + afc: 178a .2byte 0x178a + afe: 0000 .2byte 0x0 + b00: d305 .2byte 0xd305 + b02: 4d01 .2byte 0x4d01 + b04: 0025 .2byte 0x25 + b06: 0600 .2byte 0x600 + b08: 01d4 .2byte 0x1d4 + b0a: 0fde .2byte 0xfde + b0c: 0000 .2byte 0x0 + b0e: d505 .2byte 0xd505 + b10: 9b01 .2byte 0x9b01 + b12: 0600000f fence or,unknown + b16: 0b5401d7 .4byte 0xb5401d7 + b1a: 0000 .2byte 0x0 + b1c: d805 .2byte 0xd805 + b1e: 0901 .2byte 0x901 + b20: 002e .2byte 0x2e + b22: 0600 .2byte 0x600 + b24: 01d9 .2byte 0x1d9 + b26: 2716 .2byte 0x2716 + b28: 0000 .2byte 0x0 + b2a: da05 .2byte 0xda05 + b2c: d501 .2byte 0xd501 + b2e: 06000007 .4byte 0x6000007 + b32: 01dc .2byte 0x1dc + b34: 1796 .2byte 0x1796 + b36: 0000 .2byte 0x0 + b38: dd05 .2byte 0xdd05 + b3a: 9501 .2byte 0x9501 + b3c: 0016 .2byte 0x16 + b3e: 0600 .2byte 0x600 + b40: 01df 2b2a 0000 .byte 0xdf, 0x01, 0x2a, 0x2b, 0x00, 0x00 + b46: e005 .2byte 0xe005 + b48: 3e01 .2byte 0x3e01 + b4a: 0028 .2byte 0x28 + b4c: 0600 .2byte 0x600 + b4e: 01e1 .2byte 0x1e1 + b50: 0000173f 9c01e205 .8byte 0x9c01e2050000173f + b58: 002c .2byte 0x2c + b5a: 0600 .2byte 0x600 + b5c: 01e4 .2byte 0x1e4 + b5e: 1394 .2byte 0x1394 + b60: 0000 .2byte 0x0 + b62: e505 .2byte 0xe505 + b64: a601 .2byte 0xa601 + b66: 0034 .2byte 0x34 + b68: 0600 .2byte 0x600 + b6a: 01e6 .2byte 0x1e6 + b6c: 2ef2 .2byte 0x2ef2 + b6e: 0000 .2byte 0x0 + b70: e705 .2byte 0xe705 + b72: 5201 .2byte 0x5201 + b74: 000e .2byte 0xe + b76: 0600 .2byte 0x600 + b78: 2dca01ef jal x3,a0e54 <_start-0x7ff5f1ac> + b7c: 0000 .2byte 0x0 + b7e: f005 .2byte 0xf005 + b80: 5001 .2byte 0x5001 + b82: 0024 .2byte 0x24 + b84: 0600 .2byte 0x600 + b86: 01f1 .2byte 0x1f1 + b88: 00003167 .4byte 0x3167 + b8c: f205 .2byte 0xf205 + b8e: 1001 .2byte 0x1001 + b90: 0002 .2byte 0x2 + b92: 0600 .2byte 0x600 + b94: 206901f3 .4byte 0x206901f3 + b98: 0000 .2byte 0x0 + b9a: f405 .2byte 0xf405 + b9c: f701 .2byte 0xf701 + b9e: 000e .2byte 0xe + ba0: 0600 .2byte 0x600 + ba2: 01f5 .2byte 0x1f5 + ba4: 10f5 .2byte 0x10f5 + ba6: 0000 .2byte 0x0 + ba8: f605 .2byte 0xf605 + baa: 9b01 .2byte 0x9b01 + bac: 0024 .2byte 0x24 + bae: 0600 .2byte 0x600 + bb0: 2dc901f7 .4byte 0x2dc901f7 + bb4: 0000 .2byte 0x0 + bb6: f805 .2byte 0xf805 + bb8: 3401 .2byte 0x3401 + bba: 0011 .2byte 0x11 + bbc: 0600 .2byte 0x600 + bbe: 01f9 .2byte 0x1f9 + bc0: 3166 .2byte 0x3166 + bc2: 0000 .2byte 0x0 + bc4: fa05 .2byte 0xfa05 + bc6: 3c01 .2byte 0x3c01 + bc8: 06000003 lb x0,96(x0) # 60 <_start-0x7fffffa0> + bcc: 206801fb .4byte 0x206801fb + bd0: 0000 .2byte 0x0 + bd2: fc05 .2byte 0xfc05 + bd4: 7e01 .2byte 0x7e01 + bd6: 001e .2byte 0x1e + bd8: 0600 .2byte 0x600 + bda: 01fd .2byte 0x1fd + bdc: 10f4 .2byte 0x10f4 + bde: 0000 .2byte 0x0 + be0: fe05 .2byte 0xfe05 + be2: 1901 .2byte 0x1901 + be4: 0022 .2byte 0x22 + be6: 0600 .2byte 0x600 + be8: 01ff 2072 0000 8005 .byte 0xff, 0x01, 0x72, 0x20, 0x00, 0x00, 0x05, 0x80, 0x02, 0xfd + bf0: fd02 + bf2: 0011 .2byte 0x11 + bf4: 0600 .2byte 0x600 + bf6: 0281 .2byte 0x281 + bf8: 2071 .2byte 0x2071 + bfa: 0000 .2byte 0x0 + bfc: 8205 .2byte 0x8205 + bfe: b002 .2byte 0xb002 + c00: 0029 .2byte 0x29 + c02: 0000 .2byte 0x0 + c04: 0005 .2byte 0x5 + c06: 8c02 .2byte 0x8c02 + 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: 353c .2byte 0x353c + 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: 1aa9 .2byte 0x1aa9 + c2c: 0000 .2byte 0x0 + c2e: 0404 .2byte 0x404 + c30: 0004 .2byte 0x4 diff --git a/gdb/z.py b/gdb/z.py new file mode 100644 index 0000000..98c6a26 --- /dev/null +++ b/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/gdb/zero.py b/gdb/zero.py new file mode 100644 index 0000000..0095bd7 --- /dev/null +++ b/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/igit.py b/igit.py new file mode 100644 index 0000000..572e518 --- /dev/null +++ b/igit.py @@ -0,0 +1,111 @@ +import argparse +import json +import sys +import subprocess +import os +from datetime import datetime + +DEFAULT_CONFIG = { + "user": "siah", + "email": "siah@mpabi.pl", + "remotes": [{ + "name": "r", # Zaktualizowano z "default" na "mpabi" + "protocol": "http", + "domain": "qstack.pl", + "port": "3000", + "token_name": "token", + "token": "be65ebb7f7f87593f0f1620df9ba86a02b777935", + "group": "1i-2023", + "project": "strlen-c" + }] +} + +def load_or_create_config(config_file, args): + config_exists = os.path.exists(config_file) and os.stat(config_file).st_size != 0 + if config_exists: + with open(config_file, 'r') as file: + config = json.load(file) + else: + config = DEFAULT_CONFIG.copy() + + # Znajdź istniejące zdalne repozytorium o podanej nazwie + remote = next((remote for remote in config['remotes'] if remote['name'] == args.remote), None) + + # Jeśli istnieje zdalne repozytorium i podano argumenty związane z konfiguracją zdalnego repozytorium + if remote: + for field in ['protocol', 'domain', 'port', 'token_name', 'token', 'group', 'project']: + # Aktualizuj tylko, jeśli argument został jawnie podany + if getattr(args, field, None) is not None: + remote[field] = getattr(args, field) + + # Jeśli zdalne repozytorium nie istnieje, ale podano nazwę, tworzymy nowe zdalne repozytorium + elif args.remote: + new_remote = {'name': args.remote} + for field in ['protocol', 'domain', 'port', 'token_name', 'token', 'group', 'project']: + new_remote[field] = getattr(args, field, DEFAULT_CONFIG['remotes'][0].get(field, '')) + if new_remote[field] == None: + new_remote[field] = DEFAULT_CONFIG['remotes'][0].get(field, '') + config['remotes'].append(new_remote) + + # Aktualizuj informacje o użytkowniku i email, tylko jeśli zostały podane + if getattr(args, 'user', None): + config['user'] = args.user + if getattr(args, 'email_domain', None): + config['email'] = f"{args.user}@{args.email_domain}" + + # Zapisz zmodyfikowaną konfigurację + with open(config_file, 'w') as file: + json.dump(config, file, indent=4) + + return config + + +def init_git_repo(config): + user_name = config['user'] + user_email = config['email'] + branch_name = f"{user_name}-{datetime.now().strftime('%Y-%m-%d')}" + + if subprocess.run(["git", "rev-parse", "--git-dir"], stderr=subprocess.DEVNULL).returncode != 0: + subprocess.run(["git", "init"]) + subprocess.run(["git", "config", "user.name", user_name]) + subprocess.run(["git", "config", "user.email", user_email]) + subprocess.run(["git", "checkout", "-b", branch_name]) + print("Git repository initialized.") + else: + print("Already inside a Git repository. Skipping initialization.") + + remotesFromList = str(subprocess.run(["git", "remote", "-v"], capture_output=True).stdout) + remotesFromList = remotesFromList.replace('b\'', "").replace('\'', "").split('\\n') + for rm in remotesFromList: + name = rm.split("\\t")[0] + subprocess.run(["git", "remote", "remove", name], stderr=subprocess.DEVNULL) + + for remote in config['remotes']: + remote_url = f"{remote['protocol']}://{remote['token_name']}:{remote['token']}@{remote['domain']}:{remote['port']}/{remote['group']}/{remote['project']}" + # Usunięcie i ponowne dodanie zdalnego repozytorium, jeśli jest zaktualizowane + #subprocess.run(["git", "remote", "remove", remote['name']], stderr=subprocess.DEVNULL) + subprocess.run(["git", "remote", "add", remote['name'], remote_url]) + print(f"Remote '{remote['name']}' added or updated.") + +def main(): + parser = argparse.ArgumentParser(description="Git repository initializer with custom configuration.") + parser.add_argument("--user", help="User name") + parser.add_argument("--email_domain", help="Email domain") + parser.add_argument("--config", help="Path to the JSON config file", default="conf.json") + parser.add_argument("--remote", help="Name of the remote to add or update") + parser.add_argument("--protocol", help="Remote protocol") + parser.add_argument("--domain", help="Remote domain") + parser.add_argument("--port", help="Remote port") + parser.add_argument("--token_name", help="Remote token name") + parser.add_argument("--token", help="Remote token") + parser.add_argument("--group", help="Group name") + parser.add_argument("--project", help="Project name") + + args = parser.parse_args() + + config = load_or_create_config(args.config, args) + init_git_repo(config) + print("Git repository initialized and configured based on the provided configuration.") + +if __name__ == "__main__": + main() diff --git a/tex/main.pdf b/tex/main.pdf new file mode 100644 index 0000000..67ea495 Binary files /dev/null and b/tex/main.pdf differ diff --git a/tex/main.tex b/tex/main.tex new file mode 100644 index 0000000..080eb64 --- /dev/null +++ b/tex/main.tex @@ -0,0 +1,110 @@ +\documentclass{article} +\usepackage[a4paper, margin=2cm]{geometry} + +\usepackage[utf8]{inputenc} +\usepackage[T1]{fontenc} +\usepackage[polish]{babel} +\usepackage{listings} +\usepackage{color} + +\definecolor{codegreen}{rgb}{0,0.6,0} +\definecolor{codegray}{rgb}{0.5,0.5,0.5} +\definecolor{codepurple}{rgb}{0.58,0,0.82} +\definecolor{backcolour}{rgb}{0.95,0.95,0.92} + +\lstdefinestyle{mystyle}{ + backgroundcolor=\color{backcolour}, + commentstyle=\color{codegreen}, + keywordstyle=\color{magenta}, + numberstyle=\tiny\color{codegray}, + stringstyle=\color{codepurple}, + basicstyle=\ttfamily\footnotesize, + breakatwhitespace=false, + breaklines=true, + captionpos=b, + keepspaces=true, + showspaces=false, + showstringspaces=false, + showtabs=false, + tabsize=2 +} + +\lstset{style=mystyle} + +\begin{document} + +\title{GDB and DASHBOARD} +\author{} +\date{} +\maketitle + +\section{Dashboard memory watch} +Dashboard GDB pozwala na dynamiczne obserwowanie określonych obszarów pamięci. Używając funkcji \texttt{dashboard memory watch}, można ustawić obserwację na konkretne adresy pamięci. + +\begin{lstlisting}[language=bash] +dashboard memory watch 0x1ff80 128 +\end{lstlisting} + +\noindent +Powyższa komenda skonfiguruje dashboard do obserwacji 128 bajtów pamięci, począwszy od adresu \texttt{0x1ff80}. + +\section{Obserwacja pamięci przy użyciu watch w GDB} +Aby obserwować pamięć na niskim poziomie w GDB, można użyć komendy \texttt{watch} w połączeniu z rzutowaniem i rozmiarem obserwowanego obszaru. Przykładowo, aby obserwować 128 bajty pamięci zaczynając od adresu \texttt{0x1ff80}, użyjemy następującej komendy: + +\begin{lstlisting}[language=bash] +watch *(char*)0x1ff80 @ 128 +\end{lstlisting} + +Ta komenda spowoduje przerwanie wykonania programu, gdy wartości w obserwowanym obszarze pamięci ulegną zmianie. Użycie rzutowania na typ \texttt{(char*)} pozwala na interpretację adresu jako wskaźnika na bajty, a operator \texttt{@} określa ilość obserwowanych bajtów. + +\section{Clear Memory} + +\subsection{Basic Usage} +To clear 128 bytes of memory starting from 0x1FF80, use the following script: + +\begin{lstlisting}[language=bash] +#./gdb/zero.py + +import gdb +for i in range(0, 128): # 128 bajtów + gdb.execute("set *((char*)0x1FF80 + %d) = 0" % i) +\end{lstlisting} + +Run this script from GDB dashboard by: + +\begin{lstlisting}[language=bash] +source gdb/zero.py +\end{lstlisting} + +\subsection{Option 2: With Parameters} +To dynamically set the starting address, number of bytes, and pattern from the command line, modify the script as follows: + +\begin{lstlisting}[language=bash] +#./gdb/zero_with_params.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*)%d + %d) = %d" % (start_address, i, pattern)) +\end{lstlisting} + +To run this script with parameters, set GDB's `args` parameter before sourcing the script: + +\begin{lstlisting}[language=bash] +set args 0x1FF80 0x80 0x30 +source gdb/zero_with_params.py +\end{lstlisting} + +This allows specifying the starting address, number of bytes to clear, and the pattern to use directly from the GDB command line. + +\end{document}