diff --git a/cpp/._rvmain.cpp.swn b/cpp/._rvmain.cpp.swn new file mode 100644 index 0000000..e97a193 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..c6272c4 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..c2c26e3 Binary files /dev/null and b/cpp/._rvmain.cpp.swp differ diff --git a/cpp/.gdb_history b/cpp/.gdb_history new file mode 100644 index 0000000..bdf3568 --- /dev/null +++ b/cpp/.gdb_history @@ -0,0 +1,256 @@ +c +b main +c +c +exit +target extended-remote localhost:3333 +file prog +load +dashboard memory watch 0x1ff80 0x80 +set radix 16 +set args 0x1ff80 0x80 0x30 +source gdb/z.py +source gdb/z.py +source gdb/z.py +source gdb/z.py +source gdb/z.py +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +load +si +si +si +si +si +si +si +si +exit 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..5f174f3 --- /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,-Tdata=0x10000 +# 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..c917d55 --- /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, 0x1fff0 +j finish_bss + # 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..f8692a4 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..d7491ca --- /dev/null +++ b/cpp/_rvmain.cpp @@ -0,0 +1,44 @@ +#include + + +int strlen(const char *s) { + const char *p = s; + while (*p != '\0') { + p++; + } + return p - s; +} + + +void strcpy(char *s, const char *t) { + while ((*s++ = *t++) != '\0'); +} + +#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() { + const char *s = "Denys"; + int wynik = strlen(s); + + + return wynik; +} + diff --git a/cpp/_rvmain.o b/cpp/_rvmain.o new file mode 100644 index 0000000..2cde188 Binary files /dev/null and b/cpp/_rvmain.o differ diff --git a/cpp/gdb/z.py b/cpp/gdb/z.py new file mode 100644 index 0000000..98c6a26 --- /dev/null +++ b/cpp/gdb/z.py @@ -0,0 +1,17 @@ +# set args 0x1FF80 0x80 0x30 +# source gdb/z.py + +import gdb +import sys + +# Parse arguments from the GDB command +args = gdb.string_to_argv(gdb.parameter("args")) +if len(args) != 3: + print("Usage: source gdb/zero_with_params.py ") +else: + start_address = int(args[0], 16) # Convert start address from hex to int + num_bytes = int(args[1], 16) # Convert number of bytes from hex to int + pattern = int(args[2], 16) # Convert pattern from hex to int + + for i in range(num_bytes): + gdb.execute("set *((char*)%x + %x) = %x" % (start_address, i, pattern)) diff --git a/cpp/gdb/zero.py b/cpp/gdb/zero.py new file mode 100644 index 0000000..0095bd7 --- /dev/null +++ b/cpp/gdb/zero.py @@ -0,0 +1,5 @@ +#source gdb/z.py + +import gdb +for i in range(0, 128): # 128 bajtów + gdb.execute("set *((char*)(0x1FF80 + %x)) = 0xaa" % i) diff --git a/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..571611f 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..2799ca3 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..178dc9f --- /dev/null +++ b/cpp/prog.lst @@ -0,0 +1,7420 @@ + +prog: file format elf32-littleriscv + + +Disassembly of section .text: + +00000000 <_start>: + 0: 00011197 auipc x3,0x11 + 4: 82018193 addi x3,x3,-2016 # 10820 <__global_pointer$> + 8: 00020137 lui x2,0x20 + c: ff010113 addi x2,x2,-16 # 1fff0 <__BSS_END__+0xd8bc> + 10: 0240006f jal x0,34 + 14: 00010517 auipc x10,0x10 + 18: 01050513 addi x10,x10,16 # 10024 <_ZL8allocbuf> + 1c: 00012597 auipc x11,0x12 + 20: 71858593 addi x11,x11,1816 # 12734 <__BSS_END__> + +00000024 : + 24: 00b57863 bgeu x10,x11,34 + 28: 00050023 sb x0,0(x10) + 2c: 00150513 addi x10,x10,1 + 30: fe000ae3 beq x0,x0,24 + +00000034 : + 34: 00000013 addi x0,x0,0 + 38: 00000097 auipc x1,0x0 + 3c: 168080e7 jalr x1,360(x1) # 1a0
+ 40: 00000013 addi x0,x0,0 + 44: 00100073 ebreak + +00000048 <_Z6strlenPKc>: + 48: fd010113 addi x2,x2,-48 + 4c: 02812623 sw x8,44(x2) + 50: 03010413 addi x8,x2,48 + 54: fca42e23 sw x10,-36(x8) + 58: fdc42783 lw x15,-36(x8) + 5c: fef42623 sw x15,-20(x8) + 60: 0100006f jal x0,70 <_Z6strlenPKc+0x28> + 64: fec42783 lw x15,-20(x8) + 68: 00178793 addi x15,x15,1 + 6c: fef42623 sw x15,-20(x8) + 70: fec42783 lw x15,-20(x8) + 74: 0007c783 lbu x15,0(x15) + 78: fe0796e3 bne x15,x0,64 <_Z6strlenPKc+0x1c> + 7c: fec42703 lw x14,-20(x8) + 80: fdc42783 lw x15,-36(x8) + 84: 40f707b3 sub x15,x14,x15 + 88: 00078513 addi x10,x15,0 + 8c: 02c12403 lw x8,44(x2) + 90: 03010113 addi x2,x2,48 + 94: 00008067 jalr x0,0(x1) + +00000098 <_Z6strcpyPcPKc>: + 98: fe010113 addi x2,x2,-32 + 9c: 00812e23 sw x8,28(x2) + a0: 02010413 addi x8,x2,32 + a4: fea42623 sw x10,-20(x8) + a8: feb42423 sw x11,-24(x8) + ac: 00000013 addi x0,x0,0 + b0: fe842783 lw x15,-24(x8) + b4: 00178713 addi x14,x15,1 + b8: fee42423 sw x14,-24(x8) + bc: 0007c703 lbu x14,0(x15) + c0: fec42783 lw x15,-20(x8) + c4: 00178693 addi x13,x15,1 + c8: fed42623 sw x13,-20(x8) + cc: 00e78023 sb x14,0(x15) + d0: 0007c783 lbu x15,0(x15) + d4: 00f037b3 sltu x15,x0,x15 + d8: 0ff7f793 andi x15,x15,255 + dc: fc079ae3 bne x15,x0,b0 <_Z6strcpyPcPKc+0x18> + e0: 00000013 addi x0,x0,0 + e4: 00000013 addi x0,x0,0 + e8: 01c12403 lw x8,28(x2) + ec: 02010113 addi x2,x2,32 + f0: 00008067 jalr x0,0(x1) + +000000f4 <_Z5alloci>: + f4: fe010113 addi x2,x2,-32 + f8: 00812e23 sw x8,28(x2) + fc: 02010413 addi x8,x2,32 + 100: fea42623 sw x10,-20(x8) + 104: fec42783 lw x15,-20(x8) + 108: 0037f793 andi x15,x15,3 + 10c: 02078a63 beq x15,x0,140 <_Z5alloci+0x4c> + 110: fec42703 lw x14,-20(x8) + 114: 41f75793 srai x15,x14,0x1f + 118: 01e7d793 srli x15,x15,0x1e + 11c: 00f70733 add x14,x14,x15 + 120: 00377713 andi x14,x14,3 + 124: 40f707b3 sub x15,x14,x15 + 128: 00078713 addi x14,x15,0 + 12c: 00400793 addi x15,x0,4 + 130: 40e787b3 sub x15,x15,x14 + 134: fec42703 lw x14,-20(x8) + 138: 00f707b3 add x15,x14,x15 + 13c: fef42623 sw x15,-20(x8) + 140: 000127b7 lui x15,0x12 + 144: 73478713 addi x14,x15,1844 # 12734 <__BSS_END__> + 148: 000107b7 lui x15,0x10 + 14c: 0207a783 lw x15,32(x15) # 10020 <_ZL6allocp> + 150: 40f707b3 sub x15,x14,x15 + 154: fec42703 lw x14,-20(x8) + 158: 02e7ca63 blt x15,x14,18c <_Z5alloci+0x98> + 15c: 000107b7 lui x15,0x10 + 160: 0207a703 lw x14,32(x15) # 10020 <_ZL6allocp> + 164: fec42783 lw x15,-20(x8) + 168: 00f70733 add x14,x14,x15 + 16c: 000107b7 lui x15,0x10 + 170: 02e7a023 sw x14,32(x15) # 10020 <_ZL6allocp> + 174: 000107b7 lui x15,0x10 + 178: 0207a703 lw x14,32(x15) # 10020 <_ZL6allocp> + 17c: fec42783 lw x15,-20(x8) + 180: 40f007b3 sub x15,x0,x15 + 184: 00f707b3 add x15,x14,x15 + 188: 0080006f jal x0,190 <_Z5alloci+0x9c> + 18c: 00000793 addi x15,x0,0 + 190: 00078513 addi x10,x15,0 + 194: 01c12403 lw x8,28(x2) + 198: 02010113 addi x2,x2,32 + 19c: 00008067 jalr x0,0(x1) + +000001a0
: + 1a0: fe010113 addi x2,x2,-32 + 1a4: 00112e23 sw x1,28(x2) + 1a8: 00812c23 sw x8,24(x2) + 1ac: 02010413 addi x8,x2,32 + 1b0: 000007b7 lui x15,0x0 + 1b4: 34878793 addi x15,x15,840 # 348 + 1b8: fef42623 sw x15,-20(x8) + 1bc: fec42503 lw x10,-20(x8) + 1c0: 00000097 auipc x1,0x0 + 1c4: e88080e7 jalr x1,-376(x1) # 48 <_Z6strlenPKc> + 1c8: fea42423 sw x10,-24(x8) + 1cc: fe842783 lw x15,-24(x8) + 1d0: 00078513 addi x10,x15,0 + 1d4: 01c12083 lw x1,28(x2) + 1d8: 01812403 lw x8,24(x2) + 1dc: 02010113 addi x2,x2,32 + 1e0: 00008067 jalr x0,0(x1) + +000001e4 <_ZL9my_strlenPKc>: + 1e4: fd010113 addi x2,x2,-48 + 1e8: 02812623 sw x8,44(x2) + 1ec: 03010413 addi x8,x2,48 + 1f0: fca42e23 sw x10,-36(x8) + 1f4: fe042623 sw x0,-20(x8) + 1f8: 0100006f jal x0,208 <_ZL9my_strlenPKc+0x24> + 1fc: fec42783 lw x15,-20(x8) + 200: 00178793 addi x15,x15,1 + 204: fef42623 sw x15,-20(x8) + 208: fec42783 lw x15,-20(x8) + 20c: fdc42703 lw x14,-36(x8) + 210: 00f707b3 add x15,x14,x15 + 214: 0007c783 lbu x15,0(x15) + 218: fe0792e3 bne x15,x0,1fc <_ZL9my_strlenPKc+0x18> + 21c: fec42783 lw x15,-20(x8) + 220: 00078513 addi x10,x15,0 + 224: 02c12403 lw x8,44(x2) + 228: 03010113 addi x2,x2,48 + 22c: 00008067 jalr x0,0(x1) + +00000230 <_Z16count_charactersPKcS0_Ph>: + 230: fd010113 addi x2,x2,-48 + 234: 02112623 sw x1,44(x2) + 238: 02812423 sw x8,40(x2) + 23c: 03010413 addi x8,x2,48 + 240: fca42e23 sw x10,-36(x8) + 244: fcb42c23 sw x11,-40(x8) + 248: fcc42a23 sw x12,-44(x8) + 24c: fdc42503 lw x10,-36(x8) + 250: 00000097 auipc x1,0x0 + 254: f94080e7 jalr x1,-108(x1) # 1e4 <_ZL9my_strlenPKc> + 258: fea42023 sw x10,-32(x8) + 25c: fe042623 sw x0,-20(x8) + 260: 0200006f jal x0,280 <_Z16count_charactersPKcS0_Ph+0x50> + 264: fec42783 lw x15,-20(x8) + 268: fd442703 lw x14,-44(x8) + 26c: 00f707b3 add x15,x14,x15 + 270: 00078023 sb x0,0(x15) + 274: fec42783 lw x15,-20(x8) + 278: 00178793 addi x15,x15,1 + 27c: fef42623 sw x15,-20(x8) + 280: fec42703 lw x14,-20(x8) + 284: fe042783 lw x15,-32(x8) + 288: fcf74ee3 blt x14,x15,264 <_Z16count_charactersPKcS0_Ph+0x34> + 28c: fe042423 sw x0,-24(x8) + 290: 0780006f jal x0,308 <_Z16count_charactersPKcS0_Ph+0xd8> + 294: fe042223 sw x0,-28(x8) + 298: 0500006f jal x0,2e8 <_Z16count_charactersPKcS0_Ph+0xb8> + 29c: fe842783 lw x15,-24(x8) + 2a0: fdc42703 lw x14,-36(x8) + 2a4: 00f707b3 add x15,x14,x15 + 2a8: 0007c703 lbu x14,0(x15) + 2ac: fe442783 lw x15,-28(x8) + 2b0: fd842683 lw x13,-40(x8) + 2b4: 00f687b3 add x15,x13,x15 + 2b8: 0007c783 lbu x15,0(x15) + 2bc: 02f71063 bne x14,x15,2dc <_Z16count_charactersPKcS0_Ph+0xac> + 2c0: fe842783 lw x15,-24(x8) + 2c4: fd442703 lw x14,-44(x8) + 2c8: 00f707b3 add x15,x14,x15 + 2cc: 0007c703 lbu x14,0(x15) + 2d0: 00170713 addi x14,x14,1 + 2d4: 0ff77713 andi x14,x14,255 + 2d8: 00e78023 sb x14,0(x15) + 2dc: fe442783 lw x15,-28(x8) + 2e0: 00178793 addi x15,x15,1 + 2e4: fef42223 sw x15,-28(x8) + 2e8: fe442783 lw x15,-28(x8) + 2ec: fd842703 lw x14,-40(x8) + 2f0: 00f707b3 add x15,x14,x15 + 2f4: 0007c783 lbu x15,0(x15) + 2f8: fa0792e3 bne x15,x0,29c <_Z16count_charactersPKcS0_Ph+0x6c> + 2fc: fe842783 lw x15,-24(x8) + 300: 00178793 addi x15,x15,1 + 304: fef42423 sw x15,-24(x8) + 308: fe842703 lw x14,-24(x8) + 30c: fe042783 lw x15,-32(x8) + 310: f8f742e3 blt x14,x15,294 <_Z16count_charactersPKcS0_Ph+0x64> + 314: 00000013 addi x0,x0,0 + 318: 00000013 addi x0,x0,0 + 31c: 02c12083 lw x1,44(x2) + 320: 02812403 lw x8,40(x2) + 324: 03010113 addi x2,x2,48 + 328: 00008067 jalr x0,0(x1) + +Disassembly of section .data: + +00010000 <__DATA_BEGIN__>: + 10000: 706d .2byte 0x706d + 10002: 6261 .2byte 0x6261 + 10004: 0069 .2byte 0x69 + ... + +Disassembly of section .rodata: + +0000032c : + 32c: 6261 .2byte 0x6261 + 32e: 66656463 bltu x10,x6,996 + 332: 6a696867 .4byte 0x6a696867 + 336: 6e6d6c6b .4byte 0x6e6d6c6b + 33a: 7271706f jal x0,18260 <__BSS_END__+0x5b2c> + 33e: 77757473 .4byte 0x77757473 + 342: 7978 .2byte 0x7978 + 344: 007a .2byte 0x7a + +00000346 : + 346: 0000 .2byte 0x0 + 348: 6544 .2byte 0x6544 + 34a: 796e .2byte 0x796e + 34c: 73 00 Address 0x34c is out of bounds. + + +Disassembly of section .eh_frame: + +00000350 <.eh_frame>: + 350: 0010 .2byte 0x10 + 352: 0000 .2byte 0x0 + 354: 0000 .2byte 0x0 + 356: 0000 .2byte 0x0 + 358: 00527a03 .4byte 0x527a03 + 35c: 7c01 .2byte 0x7c01 + 35e: 0101 .2byte 0x101 + 360: 00020d1b .4byte 0x20d1b + 364: 0020 .2byte 0x20 + 366: 0000 .2byte 0x0 + 368: 0018 .2byte 0x18 + 36a: 0000 .2byte 0x0 + 36c: fcdc .2byte 0xfcdc + 36e: ffff .2byte 0xffff + 370: 0050 .2byte 0x50 + 372: 0000 .2byte 0x0 + 374: 4400 .2byte 0x4400 + 376: 300e .2byte 0x300e + 378: 8844 .2byte 0x8844 + 37a: 4401 .2byte 0x4401 + 37c: 080c .2byte 0x80c + 37e: 7c00 .2byte 0x7c00 + 380: 0cc8 .2byte 0xcc8 + 382: 3002 .2byte 0x3002 + 384: 0e44 .2byte 0xe44 + 386: 0000 .2byte 0x0 + 388: 0020 .2byte 0x20 + 38a: 0000 .2byte 0x0 + 38c: 003c .2byte 0x3c + 38e: 0000 .2byte 0x0 + 390: fd08 .2byte 0xfd08 + 392: ffff .2byte 0xffff + 394: 005c .2byte 0x5c + 396: 0000 .2byte 0x0 + 398: 4400 .2byte 0x4400 + 39a: 200e .2byte 0x200e + 39c: 8844 .2byte 0x8844 + 39e: 4401 .2byte 0x4401 + 3a0: 080c .2byte 0x80c + 3a2: 0200 .2byte 0x200 + 3a4: c848 .2byte 0xc848 + 3a6: 020c .2byte 0x20c + 3a8: 4420 .2byte 0x4420 + 3aa: 000e .2byte 0xe + 3ac: 0020 .2byte 0x20 + 3ae: 0000 .2byte 0x0 + 3b0: 0060 .2byte 0x60 + 3b2: 0000 .2byte 0x0 + 3b4: fd40 .2byte 0xfd40 + 3b6: ffff .2byte 0xffff + 3b8: 00ac .2byte 0xac + 3ba: 0000 .2byte 0x0 + 3bc: 4400 .2byte 0x4400 + 3be: 200e .2byte 0x200e + 3c0: 8844 .2byte 0x8844 + 3c2: 4401 .2byte 0x4401 + 3c4: 080c .2byte 0x80c + 3c6: 0200 .2byte 0x200 + 3c8: c898 .2byte 0xc898 + 3ca: 020c .2byte 0x20c + 3cc: 4420 .2byte 0x4420 + 3ce: 000e .2byte 0xe + 3d0: 0024 .2byte 0x24 + 3d2: 0000 .2byte 0x0 + 3d4: 0084 .2byte 0x84 + 3d6: 0000 .2byte 0x0 + 3d8: fdc8 .2byte 0xfdc8 + 3da: ffff .2byte 0xffff + 3dc: 0044 .2byte 0x44 + 3de: 0000 .2byte 0x0 + 3e0: 4400 .2byte 0x4400 + 3e2: 200e .2byte 0x200e + 3e4: 8148 .2byte 0x8148 + 3e6: 8801 .2byte 0x8801 + 3e8: 4402 .2byte 0x4402 + 3ea: 080c .2byte 0x80c + 3ec: 6800 .2byte 0x6800 + 3ee: 44c1 .2byte 0x44c1 + 3f0: 0cc8 .2byte 0xcc8 + 3f2: 2002 .2byte 0x2002 + 3f4: 0e44 .2byte 0xe44 + 3f6: 0000 .2byte 0x0 + 3f8: 0020 .2byte 0x20 + 3fa: 0000 .2byte 0x0 + 3fc: 00ac .2byte 0xac + 3fe: 0000 .2byte 0x0 + 400: fde4 .2byte 0xfde4 + 402: ffff .2byte 0xffff + 404: 004c .2byte 0x4c + 406: 0000 .2byte 0x0 + 408: 4400 .2byte 0x4400 + 40a: 300e .2byte 0x300e + 40c: 8844 .2byte 0x8844 + 40e: 4401 .2byte 0x4401 + 410: 080c .2byte 0x80c + 412: 7800 .2byte 0x7800 + 414: 0cc8 .2byte 0xcc8 + 416: 3002 .2byte 0x3002 + 418: 0e44 .2byte 0xe44 + 41a: 0000 .2byte 0x0 + 41c: 0024 .2byte 0x24 + 41e: 0000 .2byte 0x0 + 420: 00d0 .2byte 0xd0 + 422: 0000 .2byte 0x0 + 424: fe0c .2byte 0xfe0c + 426: ffff .2byte 0xffff + 428: 00fc .2byte 0xfc + 42a: 0000 .2byte 0x0 + 42c: 4400 .2byte 0x4400 + 42e: 300e .2byte 0x300e + 430: 8148 .2byte 0x8148 + 432: 8801 .2byte 0x8801 + 434: 4402 .2byte 0x4402 + 436: 080c .2byte 0x80c + 438: 0200 .2byte 0x200 + 43a: c1e0 .2byte 0xc1e0 + 43c: c844 .2byte 0xc844 + 43e: 020c .2byte 0x20c + 440: 4430 .2byte 0x4430 + 442: 000e .2byte 0xe + +Disassembly of section .sdata: + +00010020 <_ZL6allocp>: + 10020: 0024 .2byte 0x24 + 10022: 0001 .2byte 0x1 + +Disassembly of section .bss: + +00010024 <_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+0x14> + 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 + ... + 14: 0048 .2byte 0x48 + ... + 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: 0048 .2byte 0x48 + 32: 0000 .2byte 0x0 + 34: 019c .2byte 0x19c + ... + 3e: 0000 .2byte 0x0 + 40: 001c .2byte 0x1c + 42: 0000 .2byte 0x0 + 44: 0002 .2byte 0x2 + 46: 01a2 .2byte 0x1a2 + 48: 0000 .2byte 0x0 + 4a: 0004 .2byte 0x4 + 4c: 0000 .2byte 0x0 + 4e: 0000 .2byte 0x0 + 50: 01e4 .2byte 0x1e4 + 52: 0000 .2byte 0x0 + 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: 4800 .2byte 0x4800 + 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: 017a .2byte 0x17a + 26: 0000 .2byte 0x0 + 28: 0005 .2byte 0x5 + 2a: 0401 .2byte 0x401 + 2c: 0014 .2byte 0x14 + 2e: 0000 .2byte 0x0 + 30: f906 .2byte 0xf906 + 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: 0048 .2byte 0x48 + 40: 0000 .2byte 0x0 + 42: 019c .2byte 0x19c + 44: 0000 .2byte 0x0 + 46: 008c .2byte 0x8c + 48: 0000 .2byte 0x0 + 4a: 0000 .2byte 0x0 + 4c: 0000 .2byte 0x0 + 4e: 0101 .2byte 0x101 + 50: c806 .2byte 0xc806 + 52: 0025 .2byte 0x25 + 54: 0100 .2byte 0x100 + 56: 0502 .2byte 0x502 + 58: 00000663 beq x0,x0,64 <_Z6strlenPKc+0x1c> + 5c: 0401 .2byte 0x401 + 5e: 7b05 .2byte 0x7b05 + 60: 0024 .2byte 0x24 + 62: 0100 .2byte 0x100 + 64: 0508 .2byte 0x508 + 66: 1262 .2byte 0x1262 + 68: 0000 .2byte 0x0 + 6a: 0101 .2byte 0x101 + 6c: 6208 .2byte 0x6208 + 6e: 01000027 .4byte 0x1000027 + 72: 0702 .2byte 0x702 + 74: 04b8 .2byte 0x4b8 + 76: 0000 .2byte 0x0 + 78: 0401 .2byte 0x401 + 7a: 0020b607 .4byte 0x20b607 + 7e: 0100 .2byte 0x100 + 80: 0708 .2byte 0x708 + 82: 2f7e .2byte 0x2f7e + 84: 0000 .2byte 0x0 + 86: 69050407 .4byte 0x69050407 + 8a: 746e .2byte 0x746e + 8c: 0100 .2byte 0x100 + 8e: 0704 .2byte 0x704 + 90: 2c88 .2byte 0x2c88 + 92: 0000 .2byte 0x0 + 94: 8108 .2byte 0x8108 + 96: 0000 .2byte 0x0 + 98: 8100 .2byte 0x8100 + 9a: 0000 .2byte 0x0 + 9c: 0900 .2byte 0x900 + 9e: 0069 .2byte 0x69 + a0: 0000 .2byte 0x0 + a2: 0100270f .4byte 0x100270f + a6: 0801 .2byte 0x801 + a8: 000025cf .4byte 0x25cf + ac: 810a .2byte 0x810a + ae: 0000 .2byte 0x0 + b0: 0300 .2byte 0x300 + b2: 1051 .2byte 0x1051 + b4: 0000 .2byte 0x0 + b6: 0d14 .2byte 0xd14 + b8: 0070 .2byte 0x70 + ba: 0000 .2byte 0x0 + bc: 0305 .2byte 0x305 + be: 0024 .2byte 0x24 + c0: 0001 .2byte 0x1 + c2: 001cc803 lbu x16,1(x25) + c6: 1500 .2byte 0x1500 + c8: af0e .2byte 0xaf0e + ca: 0000 .2byte 0x0 + cc: 0500 .2byte 0x500 + ce: 01002003 lw x0,16(x0) # 10 <_start+0x10> + d2: 0400 .2byte 0x400 + d4: 0081 .2byte 0x81 + d6: 0000 .2byte 0x0 + d8: 0029650b .4byte 0x29650b + dc: 0100 .2byte 0x100 + de: 0525 .2byte 0x525 + e0: 0062 .2byte 0x62 + e2: 0000 .2byte 0x0 + e4: 01a0 .2byte 0x1a0 + e6: 0000 .2byte 0x0 + e8: 0044 .2byte 0x44 + ea: 0000 .2byte 0x0 + ec: 9c01 .2byte 0x9c01 + ee: 00e8 .2byte 0xe8 + f0: 0000 .2byte 0x0 + f2: 7305 .2byte 0x7305 + f4: 2600 .2byte 0x2600 + f6: 00e8 .2byte 0xe8 + f8: 0000 .2byte 0x0 + fa: 9102 .2byte 0x9102 + fc: 036c .2byte 0x36c + fe: 2a50 .2byte 0x2a50 + 100: 0000 .2byte 0x0 + 102: 00620927 .4byte 0x620927 + 106: 0000 .2byte 0x0 + 108: 9102 .2byte 0x9102 + 10a: 0068 .2byte 0x68 + 10c: 8804 .2byte 0x8804 + 10e: 0000 .2byte 0x0 + 110: 0c00 .2byte 0xc00 + 112: 2439 .2byte 0x2439 + 114: 0000 .2byte 0x0 + 116: 1801 .2byte 0x1801 + 118: 001bc007 .4byte 0x1bc007 + 11c: af00 .2byte 0xaf00 + 11e: 0000 .2byte 0x0 + 120: f400 .2byte 0xf400 + 122: 0000 .2byte 0x0 + 124: ac00 .2byte 0xac00 + 126: 0000 .2byte 0x0 + 128: 0100 .2byte 0x100 + 12a: 189c .2byte 0x189c + 12c: 0001 .2byte 0x1 + 12e: 0200 .2byte 0x200 + 130: 006e .2byte 0x6e + 132: 1118 .2byte 0x1118 + 134: 0062 .2byte 0x62 + 136: 0000 .2byte 0x0 + 138: 9102 .2byte 0x9102 + 13a: 006c .2byte 0x6c + 13c: 6e0d .2byte 0x6e0d + 13e: 000a .2byte 0xa + 140: 0100 .2byte 0x100 + 142: 060d .2byte 0x60d + 144: 01f4 .2byte 0x1f4 + 146: 0000 .2byte 0x0 + 148: 0098 .2byte 0x98 + 14a: 0000 .2byte 0x0 + 14c: 005c .2byte 0x5c + 14e: 0000 .2byte 0x0 + 150: 9c01 .2byte 0x9c01 + 152: 0000014b .4byte 0x14b + 156: 7302 .2byte 0x7302 + 158: 0d00 .2byte 0xd00 + 15a: 0000af13 slti x30,x1,0 + 15e: 0200 .2byte 0x200 + 160: 6c91 .2byte 0x6c91 + 162: 7402 .2byte 0x7402 + 164: 0d00 .2byte 0xd00 + 166: e822 .2byte 0xe822 + 168: 0000 .2byte 0x0 + 16a: 0200 .2byte 0x200 + 16c: 6891 .2byte 0x6891 + 16e: 0e00 .2byte 0xe00 + 170: 3579 .2byte 0x3579 + 172: 0000 .2byte 0x0 + 174: 0401 .2byte 0x401 + 176: cd05 .2byte 0xcd05 + 178: 6200002b .4byte 0x6200002b + 17c: 0000 .2byte 0x0 + 17e: 4800 .2byte 0x4800 + 180: 0000 .2byte 0x0 + 182: 5000 .2byte 0x5000 + 184: 0000 .2byte 0x0 + 186: 0100 .2byte 0x100 + 188: 029c .2byte 0x29c + 18a: 18040073 .4byte 0x18040073 + 18e: 00e8 .2byte 0xe8 + 190: 0000 .2byte 0x0 + 192: 9102 .2byte 0x9102 + 194: 055c .2byte 0x55c + 196: 0070 .2byte 0x70 + 198: e805 .2byte 0xe805 + 19a: 0000 .2byte 0x0 + 19c: 0200 .2byte 0x200 + 19e: 6c91 .2byte 0x6c91 + 1a0: 0000 .2byte 0x0 + 1a2: 00000157 .4byte 0x157 + 1a6: 0005 .2byte 0x5 + 1a8: 0401 .2byte 0x401 + 1aa: 0108 .2byte 0x108 + 1ac: 0000 .2byte 0x0 + 1ae: 001cf907 .4byte 0x1cf907 + 1b2: 2100 .2byte 0x2100 + 1b4: 0084 .2byte 0x84 + 1b6: 0000 .2byte 0x0 + 1b8: 0000 .2byte 0x0 + 1ba: 0000 .2byte 0x0 + 1bc: 01e4 .2byte 0x1e4 + 1be: 0000 .2byte 0x0 + 1c0: 0148 .2byte 0x148 + 1c2: 0000 .2byte 0x0 + 1c4: 0230 .2byte 0x230 + 1c6: 0000 .2byte 0x0 + 1c8: 0c04 .2byte 0xc04 + 1ca: 0000 .2byte 0x0 + 1cc: 0101 .2byte 0x101 + 1ce: c806 .2byte 0xc806 + 1d0: 0025 .2byte 0x25 + 1d2: 0100 .2byte 0x100 + 1d4: 0502 .2byte 0x502 + 1d6: 00000663 beq x0,x0,1e2 + 1da: 0401 .2byte 0x401 + 1dc: 7b05 .2byte 0x7b05 + 1de: 0024 .2byte 0x24 + 1e0: 0100 .2byte 0x100 + 1e2: 0508 .2byte 0x508 + 1e4: 1262 .2byte 0x1262 + 1e6: 0000 .2byte 0x0 + 1e8: 3108 .2byte 0x3108 + 1ea: 0035 .2byte 0x35 + 1ec: 0200 .2byte 0x200 + 1ee: 182e .2byte 0x182e + 1f0: 0052 .2byte 0x52 + 1f2: 0000 .2byte 0x0 + 1f4: 0101 .2byte 0x101 + 1f6: 6208 .2byte 0x6208 + 1f8: 01000027 .4byte 0x1000027 + 1fc: 0702 .2byte 0x702 + 1fe: 04b8 .2byte 0x4b8 + 200: 0000 .2byte 0x0 + 202: 0401 .2byte 0x401 + 204: 0020b607 .4byte 0x20b607 + 208: 0100 .2byte 0x100 + 20a: 0708 .2byte 0x708 + 20c: 2f7e .2byte 0x2f7e + 20e: 0000 .2byte 0x0 + 210: 0409 .2byte 0x409 + 212: 6905 .2byte 0x6905 + 214: 746e .2byte 0x746e + 216: 0100 .2byte 0x100 + 218: 0704 .2byte 0x704 + 21a: 2c88 .2byte 0x2c88 + 21c: 0000 .2byte 0x0 + 21e: 650a .2byte 0x650a + 220: 0035 .2byte 0x35 + 222: 0100 .2byte 0x100 + 224: 060c .2byte 0x60c + 226: 3539 .2byte 0x3539 + 228: 0000 .2byte 0x0 + 22a: 0230 .2byte 0x230 + 22c: 0000 .2byte 0x0 + 22e: 00fc .2byte 0xfc + 230: 0000 .2byte 0x0 + 232: 9c01 .2byte 0x9c01 + 234: 0111 .2byte 0x111 + 236: 0000 .2byte 0x0 + 238: 8002 .2byte 0x8002 + 23a: 0035 .2byte 0x35 + 23c: 2300 .2byte 0x2300 + 23e: 0111 .2byte 0x111 + 240: 0000 .2byte 0x0 + 242: 9102 .2byte 0x9102 + 244: 025c .2byte 0x25c + 246: 3521 .2byte 0x3521 + 248: 0000 .2byte 0x0 + 24a: 1138 .2byte 0x1138 + 24c: 0001 .2byte 0x1 + 24e: 0200 .2byte 0x200 + 250: 5891 .2byte 0x5891 + 252: 5002 .2byte 0x5002 + 254: 002a .2byte 0x2a + 256: 4800 .2byte 0x4800 + 258: 0122 .2byte 0x122 + 25a: 0000 .2byte 0x0 + 25c: 9102 .2byte 0x9102 + 25e: 0454 .2byte 0x454 + 260: 3556 .2byte 0x3556 + 262: 0000 .2byte 0x0 + 264: 6e0e .2byte 0x6e0e + 266: 0000 .2byte 0x0 + 268: 0200 .2byte 0x200 + 26a: 6091 .2byte 0x6091 + 26c: 00025c0b .4byte 0x25c0b + 270: 3000 .2byte 0x3000 + 272: 0000 .2byte 0x0 + 274: e400 .2byte 0xe400 + 276: 0000 .2byte 0x0 + 278: 0300 .2byte 0x300 + 27a: 0069 .2byte 0x69 + 27c: 0e10 .2byte 0xe10 + 27e: 006e .2byte 0x6e + 280: 0000 .2byte 0x0 + 282: 9102 .2byte 0x9102 + 284: 006c .2byte 0x6c + 286: 8c05 .2byte 0x8c05 + 288: 0002 .2byte 0x2 + 28a: 8800 .2byte 0x8800 + 28c: 0000 .2byte 0x0 + 28e: 0300 .2byte 0x300 + 290: 0069 .2byte 0x69 + 292: 0e14 .2byte 0xe14 + 294: 006e .2byte 0x6e + 296: 0000 .2byte 0x0 + 298: 9102 .2byte 0x9102 + 29a: 0568 .2byte 0x568 + 29c: 0294 .2byte 0x294 + 29e: 0000 .2byte 0x0 + 2a0: 0068 .2byte 0x68 + 2a2: 0000 .2byte 0x0 + 2a4: 15006a03 .4byte 0x15006a03 + 2a8: 6e12 .2byte 0x6e12 + 2aa: 0000 .2byte 0x0 + 2ac: 0200 .2byte 0x200 + 2ae: 6491 .2byte 0x6491 + 2b0: 0000 .2byte 0x0 + 2b2: 0600 .2byte 0x600 + 2b4: 011d .2byte 0x11d + 2b6: 0000 .2byte 0x0 + 2b8: 0101 .2byte 0x101 + 2ba: cf08 .2byte 0xcf08 + 2bc: 0025 .2byte 0x25 + 2be: 0c00 .2byte 0xc00 + 2c0: 0116 .2byte 0x116 + 2c2: 0000 .2byte 0x0 + 2c4: 4606 .2byte 0x4606 + 2c6: 0000 .2byte 0x0 + 2c8: 0d00 .2byte 0xd00 + 2ca: 3576 .2byte 0x3576 + 2cc: 0000 .2byte 0x0 + 2ce: 0401 .2byte 0x401 + 2d0: 6e0c .2byte 0x6e0c + 2d2: 0000 .2byte 0x0 + 2d4: e400 .2byte 0xe400 + 2d6: 0001 .2byte 0x1 + 2d8: 4c00 .2byte 0x4c00 + 2da: 0000 .2byte 0x0 + 2dc: 0100 .2byte 0x100 + 2de: 0e9c .2byte 0xe9c + 2e0: 00727473 .4byte 0x727473 + 2e4: 0401 .2byte 0x401 + 2e6: 1122 .2byte 0x1122 + 2e8: 0001 .2byte 0x1 + 2ea: 0200 .2byte 0x200 + 2ec: 5c91 .2byte 0x5c91 + 2ee: 5e04 .2byte 0x5e04 + 2f0: 0035 .2byte 0x35 + 2f2: 0500 .2byte 0x500 + 2f4: 006e .2byte 0x6e + 2f6: 0000 .2byte 0x0 + 2f8: 9102 .2byte 0x9102 + 2fa: 006c .2byte 0x6c + ... + +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: 210b000f .4byte 0x210b000f + 48: 4904 .2byte 0x4904 + 4a: 05000013 addi x0,x0,80 + 4e: 0034 .2byte 0x34 + 50: 213a0803 lb x16,531(x20) + 54: 3b01 .2byte 0x3b01 + 56: 1121390b .4byte 0x1121390b + 5a: 1349 .2byte 0x1349 + 5c: 1802 .2byte 0x1802 + 5e: 0000 .2byte 0x0 + 60: 1106 .2byte 0x1106 + 62: 2501 .2byte 0x2501 + 64: 130e .2byte 0x130e + 66: 1b1f030b .4byte 0x1b1f030b + 6a: 111f 1201 1006 .byte 0x1f, 0x11, 0x01, 0x12, 0x06, 0x10 + 70: 00177917 auipc x18,0x177 + 74: 0700 .2byte 0x700 + 76: 0024 .2byte 0x24 + 78: 0b3e0b0b .4byte 0xb3e0b0b + 7c: 00000803 lb x16,0(x0) # 0 <_start> + 80: 0108 .2byte 0x108 + 82: 4901 .2byte 0x4901 + 84: 00130113 addi x2,x6,1 + 88: 0900 .2byte 0x900 + 8a: 0021 .2byte 0x21 + 8c: 1349 .2byte 0x1349 + 8e: 0000052f .4byte 0x52f + 92: 260a .2byte 0x260a + 94: 4900 .2byte 0x4900 + 96: 0b000013 addi x0,x0,176 + 9a: 012e .2byte 0x12e + 9c: 0e03193f 0b3b0b3a .8byte 0xb3b0b3a0e03193f + a4: 0b39 .2byte 0xb39 + a6: 1349 .2byte 0x1349 + a8: 0111 .2byte 0x111 + aa: 0612 .2byte 0x612 + ac: 1840 .2byte 0x1840 + ae: 197c .2byte 0x197c + b0: 1301 .2byte 0x1301 + b2: 0000 .2byte 0x0 + b4: 2e0c .2byte 0x2e0c + b6: 3f01 .2byte 0x3f01 + b8: 0319 .2byte 0x319 + ba: 3a0e .2byte 0x3a0e + bc: 390b3b0b .4byte 0x390b3b0b + c0: 490e6e0b .4byte 0x490e6e0b + c4: 12011113 .4byte 0x12011113 + c8: 4006 .2byte 0x4006 + ca: 7a18 .2byte 0x7a18 + cc: 0119 .2byte 0x119 + ce: 0d000013 addi x0,x0,208 + d2: 012e .2byte 0x12e + d4: 0e03193f 0b3b0b3a .8byte 0xb3b0b3a0e03193f + dc: 0b39 .2byte 0xb39 + de: 0e6e .2byte 0xe6e + e0: 0111 .2byte 0x111 + e2: 0612 .2byte 0x612 + e4: 1840 .2byte 0x1840 + e6: 197a .2byte 0x197a + e8: 1301 .2byte 0x1301 + ea: 0000 .2byte 0x0 + ec: 2e0e .2byte 0x2e0e + ee: 3f01 .2byte 0x3f01 + f0: 0319 .2byte 0x319 + f2: 3a0e .2byte 0x3a0e + f4: 390b3b0b .4byte 0x390b3b0b + f8: 490e6e0b .4byte 0x490e6e0b + fc: 12011113 .4byte 0x12011113 + 100: 4006 .2byte 0x4006 + 102: 7a18 .2byte 0x7a18 + 104: 0019 .2byte 0x19 + 106: 0000 .2byte 0x0 + 108: 2401 .2byte 0x2401 + 10a: 0b00 .2byte 0xb00 + 10c: 030b3e0b .4byte 0x30b3e0b + 110: 000e .2byte 0xe + 112: 0200 .2byte 0x200 + 114: 0005 .2byte 0x5 + 116: 213a0e03 lb x28,531(x20) + 11a: 3b01 .2byte 0x3b01 + 11c: 0c21 .2byte 0xc21 + 11e: 0b39 .2byte 0xb39 + 120: 1349 .2byte 0x1349 + 122: 1802 .2byte 0x1802 + 124: 0000 .2byte 0x0 + 126: 03003403 .4byte 0x3003403 + 12a: 3a08 .2byte 0x3a08 + 12c: 0121 .2byte 0x121 + 12e: 0b390b3b .4byte 0xb390b3b + 132: 1349 .2byte 0x1349 + 134: 1802 .2byte 0x1802 + 136: 0000 .2byte 0x0 + 138: 3404 .2byte 0x3404 + 13a: 0300 .2byte 0x300 + 13c: 3a0e .2byte 0x3a0e + 13e: 0121 .2byte 0x121 + 140: 21390b3b .4byte 0x21390b3b + 144: 4909 .2byte 0x4909 + 146: 00180213 addi x4,x16,1 + 14a: 0500 .2byte 0x500 + 14c: 0111010b .4byte 0x111010b + 150: 0612 .2byte 0x612 + 152: 0000 .2byte 0x0 + 154: 0f06 .2byte 0xf06 + 156: 0b00 .2byte 0xb00 + 158: 0421 .2byte 0x421 + 15a: 1349 .2byte 0x1349 + 15c: 0000 .2byte 0x0 + 15e: 25011107 .4byte 0x25011107 + 162: 130e .2byte 0x130e + 164: 1b1f030b .4byte 0x1b1f030b + 168: 111f 1201 1006 .byte 0x1f, 0x11, 0x01, 0x12, 0x06, 0x10 + 16e: 00177917 auipc x18,0x177 + 172: 0800 .2byte 0x800 + 174: 0016 .2byte 0x16 + 176: 0b3a0e03 lb x28,179(x20) + 17a: 0b390b3b .4byte 0xb390b3b + 17e: 1349 .2byte 0x1349 + 180: 0000 .2byte 0x0 + 182: 2409 .2byte 0x2409 + 184: 0b00 .2byte 0xb00 + 186: 030b3e0b .4byte 0x30b3e0b + 18a: 0008 .2byte 0x8 + 18c: 0a00 .2byte 0xa00 + 18e: 012e .2byte 0x12e + 190: 0e03193f 0b3b0b3a .8byte 0xb3b0b3a0e03193f + 198: 0b39 .2byte 0xb39 + 19a: 0e6e .2byte 0xe6e + 19c: 0111 .2byte 0x111 + 19e: 0612 .2byte 0x612 + 1a0: 1840 .2byte 0x1840 + 1a2: 197c .2byte 0x197c + 1a4: 1301 .2byte 0x1301 + 1a6: 0000 .2byte 0x0 + 1a8: 11010b0b .4byte 0x11010b0b + 1ac: 1201 .2byte 0x1201 + 1ae: 0106 .2byte 0x106 + 1b0: 0c000013 addi x0,x0,192 + 1b4: 0026 .2byte 0x26 + 1b6: 1349 .2byte 0x1349 + 1b8: 0000 .2byte 0x0 + 1ba: 2e0d .2byte 0x2e0d + 1bc: 0301 .2byte 0x301 + 1be: 3a0e .2byte 0x3a0e + 1c0: 390b3b0b .4byte 0x390b3b0b + 1c4: 1113490b .4byte 0x1113490b + 1c8: 1201 .2byte 0x1201 + 1ca: 4006 .2byte 0x4006 + 1cc: 7a18 .2byte 0x7a18 + 1ce: 0019 .2byte 0x19 + 1d0: 0e00 .2byte 0xe00 + 1d2: 0005 .2byte 0x5 + 1d4: 0b3a0803 lb x16,179(x20) + 1d8: 0b390b3b .4byte 0xb390b3b + 1dc: 1349 .2byte 0x1349 + 1de: 1802 .2byte 0x1802 + 1e0: 0000 .2byte 0x0 + ... + +Disassembly of section .debug_line: + +00000000 <.debug_line>: + 0: 0088 .2byte 0x88 + 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: 1a00 .2byte 0x1a00 + 3e: 08090303 lb x6,128(x18) # 1771ee <__BSS_END__+0x164aba> + 42: 0100 .2byte 0x100 + 44: 08090103 lb x2,128(x18) + 48: 0100 .2byte 0x100 + 4a: 04090203 lb x4,64(x18) + 4e: 0100 .2byte 0x100 + 50: 08090103 lb x2,128(x18) + 54: 0100 .2byte 0x100 + 56: 08090303 lb x6,128(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: 04090103 lb x2,64(x18) + 6c: 0100 .2byte 0x100 + 6e: 04090303 lb x6,64(x18) + 72: 0100 .2byte 0x100 + 74: 04090203 lb x4,64(x18) + 78: 0100 .2byte 0x100 + 7a: 08090203 lb x4,128(x18) + 7e: 0100 .2byte 0x100 + 80: 04090303 lb x6,64(x18) + 84: 0100 .2byte 0x100 + 86: 0409 .2byte 0x409 + 88: 0000 .2byte 0x0 + 8a: 0101 .2byte 0x101 + 8c: 01a0 .2byte 0x1a0 + 8e: 0000 .2byte 0x0 + 90: 0005 .2byte 0x5 + 92: 0004 .2byte 0x4 + 94: 0038 .2byte 0x38 + 96: 0000 .2byte 0x0 + 98: 0101 .2byte 0x101 + 9a: fb01 .2byte 0xfb01 + 9c: 0d0e .2byte 0xd0e + 9e: 0100 .2byte 0x100 + a0: 0101 .2byte 0x101 + a2: 0001 .2byte 0x1 + a4: 0000 .2byte 0x0 + a6: 0001 .2byte 0x1 + a8: 0100 .2byte 0x100 + aa: 0101 .2byte 0x101 + ac: 021f 0000 0000 .byte 0x1f, 0x02, 0x00, 0x00, 0x00, 0x00 + b2: 002c .2byte 0x2c + b4: 0000 .2byte 0x0 + b6: 0102 .2byte 0x102 + b8: 021f 040f 0020 .byte 0x1f, 0x02, 0x0f, 0x04, 0x20, 0x00 + be: 0000 .2byte 0x0 + c0: 2000 .2byte 0x2000 + c2: 0000 .2byte 0x0 + c4: 0000 .2byte 0x0 + c6: 006e .2byte 0x6e + c8: 0000 .2byte 0x0 + ca: 7701 .2byte 0x7701 + cc: 0000 .2byte 0x0 + ce: 0100 .2byte 0x100 + d0: 1b05 .2byte 0x1b05 + d2: 0500 .2byte 0x500 + d4: 4802 .2byte 0x4802 + d6: 0000 .2byte 0x0 + d8: 1500 .2byte 0x1500 + da: 1105 .2byte 0x1105 + dc: 10090103 lb x2,256(x18) + e0: 0100 .2byte 0x100 + e2: 0505 .2byte 0x505 + e4: 08090103 lb x2,128(x18) + e8: 0100 .2byte 0x100 + ea: 0a05 .2byte 0xa05 + ec: 04090103 lb x2,64(x18) + f0: 0100 .2byte 0x100 + f2: 0c05 .2byte 0xc05 + f4: 0c097f03 .4byte 0xc097f03 + f8: 0100 .2byte 0x100 + fa: 0f05 .2byte 0xf05 + fc: 08090003 lb x0,128(x18) + 100: 0100 .2byte 0x100 + 102: 1005 .2byte 0x1005 + 104: 04090303 lb x6,64(x18) + 108: 0100 .2byte 0x100 + 10a: 0105 .2byte 0x105 + 10c: 0c090103 lb x2,192(x18) + 110: 0100 .2byte 0x100 + 112: 2505 .2byte 0x2505 + 114: 10090303 lb x6,256(x18) + 118: 0100 .2byte 0x100 + 11a: 0505 .2byte 0x505 + 11c: 14090103 lb x2,320(x18) + 120: 0100 .2byte 0x100 + 122: 1605 .2byte 0x1605 + 124: 0200 .2byte 0x200 + 126: 0104 .2byte 0x104 + 128: 04090003 lb x0,64(x18) + 12c: 0100 .2byte 0x100 + 12e: 1405 .2byte 0x1405 + 130: 0200 .2byte 0x200 + 132: 0104 .2byte 0x104 + 134: 0c090003 lb x0,192(x18) + 138: 0100 .2byte 0x100 + 13a: 0f05 .2byte 0xf05 + 13c: 0200 .2byte 0x200 + 13e: 0104 .2byte 0x104 + 140: 04090003 lb x0,64(x18) + 144: 0100 .2byte 0x100 + 146: 1205 .2byte 0x1205 + 148: 0200 .2byte 0x200 + 14a: 0104 .2byte 0x104 + 14c: 0c090003 lb x0,192(x18) + 150: 0100 .2byte 0x100 + 152: 0d05 .2byte 0xd05 + 154: 0200 .2byte 0x200 + 156: 0104 .2byte 0x104 + 158: 04090003 lb x0,64(x18) + 15c: 0100 .2byte 0x100 + 15e: 1a05 .2byte 0x1a05 + 160: 0200 .2byte 0x200 + 162: 0104 .2byte 0x104 + 164: 04090003 lb x0,64(x18) + 168: 0100 .2byte 0x100 + 16a: 0105 .2byte 0x105 + 16c: 0c090103 lb x2,192(x18) + 170: 0100 .2byte 0x100 + 172: 1405 .2byte 0x1405 + 174: 14090903 lb x18,320(x18) + 178: 0100 .2byte 0x100 + 17a: 0f05 .2byte 0xf05 + 17c: 10090103 lb x2,256(x18) + 180: 0100 .2byte 0x100 + 182: 0505 .2byte 0x505 + 184: 08090003 lb x0,128(x18) + 188: 0100 .2byte 0x100 + 18a: 1505 .2byte 0x1505 + 18c: 04090103 lb x2,64(x18) + 190: 0100 .2byte 0x100 + 192: 1005 .2byte 0x1005 + 194: 1c090003 lb x0,448(x18) + 198: 0100 .2byte 0x100 + 19a: 0b05 .2byte 0xb05 + 19c: 08090003 lb x0,128(x18) + 1a0: 0100 .2byte 0x100 + 1a2: 1205 .2byte 0x1205 + 1a4: 0c090303 lb x6,192(x18) + 1a8: 0100 .2byte 0x100 + 1aa: 1e05 .2byte 0x1e05 + 1ac: 08090003 lb x0,128(x18) + 1b0: 0100 .2byte 0x100 + 1b2: 0505 .2byte 0x505 + 1b4: 0c090003 lb x0,192(x18) + 1b8: 0100 .2byte 0x100 + 1ba: 1005 .2byte 0x1005 + 1bc: 08090103 lb x2,128(x18) + 1c0: 0100 .2byte 0x100 + 1c2: 1305 .2byte 0x1305 + 1c4: 08090003 lb x0,128(x18) + 1c8: 0100 .2byte 0x100 + 1ca: 1005 .2byte 0x1005 + 1cc: 04090003 lb x0,64(x18) + 1d0: 0100 .2byte 0x100 + 1d2: 1705 .2byte 0x1705 + 1d4: 0c090103 lb x2,192(x18) + 1d8: 0100 .2byte 0x100 + 1da: 1905 .2byte 0x1905 + 1dc: 08090003 lb x0,128(x18) + 1e0: 0100 .2byte 0x100 + 1e2: 1705 .2byte 0x1705 + 1e4: 04090003 lb x0,64(x18) + 1e8: 0100 .2byte 0x100 + 1ea: 1905 .2byte 0x1905 + 1ec: 04090003 lb x0,64(x18) + 1f0: 0100 .2byte 0x100 + 1f2: 1005 .2byte 0x1005 + 1f4: 08090203 lb x4,128(x18) + 1f8: 0100 .2byte 0x100 + 1fa: 0105 .2byte 0x105 + 1fc: 04090203 lb x4,64(x18) + 200: 0100 .2byte 0x100 + 202: 0c05 .2byte 0xc05 + 204: 10090203 lb x4,256(x18) + 208: 0100 .2byte 0x100 + 20a: 1105 .2byte 0x1105 + 20c: 10090103 lb x2,256(x18) + 210: 0100 .2byte 0x100 + 212: 1705 .2byte 0x1705 + 214: 0c090103 lb x2,192(x18) + 218: 0100 .2byte 0x100 + 21a: 0c05 .2byte 0xc05 + 21c: 10090303 lb x6,256(x18) + 220: 0100 .2byte 0x100 + 222: 0105 .2byte 0x105 + 224: 04090103 lb x2,64(x18) + 228: 0100 .2byte 0x100 + 22a: 1409 .2byte 0x1409 + 22c: 0000 .2byte 0x0 + 22e: 0101 .2byte 0x101 + 230: 01a1 .2byte 0x1a1 + 232: 0000 .2byte 0x0 + 234: 0005 .2byte 0x5 + 236: 0004 .2byte 0x4 + 238: 003d .2byte 0x3d + 23a: 0000 .2byte 0x0 + 23c: 0101 .2byte 0x101 + 23e: fb01 .2byte 0xfb01 + 240: 0d0e .2byte 0xd0e + 242: 0100 .2byte 0x100 + 244: 0101 .2byte 0x101 + 246: 0001 .2byte 0x1 + 248: 0000 .2byte 0x0 + 24a: 0001 .2byte 0x1 + 24c: 0100 .2byte 0x100 + 24e: 0101 .2byte 0x101 + 250: 021f 0000 0000 .byte 0x1f, 0x02, 0x00, 0x00, 0x00, 0x00 + 256: 002c .2byte 0x2c + 258: 0000 .2byte 0x0 + 25a: 0102 .2byte 0x102 + 25c: 021f 050f 0084 .byte 0x1f, 0x02, 0x0f, 0x05, 0x84, 0x00 + 262: 0000 .2byte 0x0 + 264: 8400 .2byte 0x8400 + 266: 0000 .2byte 0x0 + 268: 0000 .2byte 0x0 + 26a: 00000077 .4byte 0x77 + 26e: 8f01 .2byte 0x8f01 + 270: 0000 .2byte 0x0 + 272: 0000 .2byte 0x0 + 274: 006e .2byte 0x6e + 276: 0000 .2byte 0x0 + 278: 0501 .2byte 0x501 + 27a: 02050027 .4byte 0x2050027 + 27e: 01e4 .2byte 0x1e4 + 280: 0000 .2byte 0x0 + 282: 0515 .2byte 0x515 + 284: 0309 .2byte 0x309 + 286: 0901 .2byte 0x901 + 288: 0010 .2byte 0x10 + 28a: 0501 .2byte 0x501 + 28c: 0305 .2byte 0x305 + 28e: 0901 .2byte 0x901 + 290: 0004 .2byte 0x4 + 292: 0501 .2byte 0x501 + 294: 0901030f .4byte 0x901030f + 298: 0004 .2byte 0x4 + 29a: 0501 .2byte 0x501 + 29c: 0310 .2byte 0x310 + 29e: 097f 000c 0501 0316 .byte 0x7f, 0x09, 0x0c, 0x00, 0x01, 0x05, 0x16, 0x03, 0x00, 0x09 + 2a6: 0900 + 2a8: 0004 .2byte 0x4 + 2aa: 0501 .2byte 0x501 + 2ac: 0318 .2byte 0x318 + 2ae: 0900 .2byte 0x900 + 2b0: 000c .2byte 0xc + 2b2: 0501 .2byte 0x501 + 2b4: 030c .2byte 0x30c + 2b6: 00040903 lb x18,0(x8) + 2ba: 0501 .2byte 0x501 + 2bc: 0301 .2byte 0x301 + 2be: 0901 .2byte 0x901 + 2c0: 0004 .2byte 0x4 + 2c2: 0501 .2byte 0x501 + 2c4: 0902034f .4byte 0x902034f + 2c8: 0010 .2byte 0x10 + 2ca: 0501 .2byte 0x501 + 2cc: 09020323 sb x16,134(x4) # 86 <_Z6strlenPKc+0x3e> + 2d0: 001c .2byte 0x1c + 2d2: 0501 .2byte 0x501 + 2d4: 030e .2byte 0x30e + 2d6: 0902 .2byte 0x902 + 2d8: 0010 .2byte 0x10 + 2da: 0501 .2byte 0x501 + 2dc: 0305 .2byte 0x305 + 2de: 0900 .2byte 0x900 + 2e0: 0004 .2byte 0x4 + 2e2: 0501 .2byte 0x501 + 2e4: 0402000f .4byte 0x402000f + 2e8: 09010303 lb x6,144(x2) # 12011094 <__BSS_END__+0x11ffe960> + 2ec: 0004 .2byte 0x4 + 2ee: 0501 .2byte 0x501 + 2f0: 0010 .2byte 0x10 + 2f2: 0402 .2byte 0x402 + 2f4: 09000303 lb x6,144(x0) # 90 <_Z6strlenPKc+0x48> + 2f8: 0004 .2byte 0x4 + 2fa: 0501 .2byte 0x501 + 2fc: 0012 .2byte 0x12 + 2fe: 0402 .2byte 0x402 + 300: 09000303 lb x6,144(x0) # 90 <_Z6strlenPKc+0x48> + 304: 0008 .2byte 0x8 + 306: 0501 .2byte 0x501 + 308: 0005 .2byte 0x5 + 30a: 0402 .2byte 0x402 + 30c: 097f0303 lb x6,151(x30) + 310: 0004 .2byte 0x4 + 312: 0501 .2byte 0x501 + 314: 04020017 auipc x0,0x4020 + 318: 0301 .2byte 0x301 + 31a: 0900 .2byte 0x900 + 31c: 000c .2byte 0xc + 31e: 0501 .2byte 0x501 + 320: 030e .2byte 0x30e + 322: 0904 .2byte 0x904 + 324: 000c .2byte 0xc + 326: 0501 .2byte 0x501 + 328: 0305 .2byte 0x305 + 32a: 0900 .2byte 0x900 + 32c: 0004 .2byte 0x4 + 32e: 0501 .2byte 0x501 + 330: 0312 .2byte 0x312 + 332: 0901 .2byte 0x901 + 334: 0004 .2byte 0x4 + 336: 0501 .2byte 0x501 + 338: 0309 .2byte 0x309 + 33a: 0900 .2byte 0x900 + 33c: 0004 .2byte 0x4 + 33e: 0501 .2byte 0x501 + 340: 0319 .2byte 0x319 + 342: 0901 .2byte 0x901 + 344: 0004 .2byte 0x4 + 346: 0501 .2byte 0x501 + 348: 031a .2byte 0x31a + 34a: 0900 .2byte 0x900 + 34c: 0004 .2byte 0x4 + 34e: 0501 .2byte 0x501 + 350: 0325 .2byte 0x325 + 352: 0900 .2byte 0x900 + 354: 000c .2byte 0xc + 356: 0501 .2byte 0x501 + 358: 0326 .2byte 0x326 + 35a: 0900 .2byte 0x900 + 35c: 0004 .2byte 0x4 + 35e: 0501 .2byte 0x501 + 360: 030d .2byte 0x30d + 362: 0900 .2byte 0x900 + 364: 000c .2byte 0xc + 366: 0501 .2byte 0x501 + 368: 09010317 auipc x6,0x9010 + 36c: 0004 .2byte 0x4 + 36e: 0501 .2byte 0x501 + 370: 0318 .2byte 0x318 + 372: 0900 .2byte 0x900 + 374: 0004 .2byte 0x4 + 376: 0501 .2byte 0x501 + 378: 0319 .2byte 0x319 + 37a: 0900 .2byte 0x900 + 37c: 000c .2byte 0xc + 37e: 0501 .2byte 0x501 + 380: 0009 .2byte 0x9 + 382: 0402 .2byte 0x402 + 384: 0302 .2byte 0x302 + 386: 097e .2byte 0x97e + 388: 000c .2byte 0xc + 38a: 0501 .2byte 0x501 + 38c: 001f 0402 0301 .byte 0x1f, 0x00, 0x02, 0x04, 0x01, 0x03 + 392: 0900 .2byte 0x900 + 394: 000c .2byte 0xc + 396: 0501 .2byte 0x501 + 398: 0020 .2byte 0x20 + 39a: 0402 .2byte 0x402 + 39c: 0301 .2byte 0x301 + 39e: 0900 .2byte 0x900 + 3a0: 0004 .2byte 0x4 + 3a2: 0501 .2byte 0x501 + 3a4: 0022 .2byte 0x22 + 3a6: 0402 .2byte 0x402 + 3a8: 0301 .2byte 0x301 + 3aa: 0900 .2byte 0x900 + 3ac: 000c .2byte 0xc + 3ae: 0501 .2byte 0x501 + 3b0: 0005 .2byte 0x5 + 3b2: 0402 .2byte 0x402 + 3b4: 0302 .2byte 0x302 + 3b6: 097f 0004 0501 0017 .byte 0x7f, 0x09, 0x04, 0x00, 0x01, 0x05, 0x17, 0x00, 0x02, 0x04 + 3be: 0402 + 3c0: 0301 .2byte 0x301 + 3c2: 0900 .2byte 0x900 + 3c4: 000c .2byte 0xc + 3c6: 0501 .2byte 0x501 + 3c8: 0301 .2byte 0x301 + 3ca: 000c0907 .4byte 0xc0907 + 3ce: 0901 .2byte 0x901 + 3d0: 0018 .2byte 0x18 + 3d2: 0100 .2byte 0x100 + 3d4: 01 Address 0x3d4 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 <__BSS_END__+0x43bcc> + 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+0x1c> + 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 5500 .byte 0x5f, 0x20, 0x33, 0x32, 0x00, 0x55 + 142: 4e49 .2byte 0x4e49 + 144: 5f54 .2byte 0x5f54 + 146: 454c .2byte 0x454c + 148: 5341 .2byte 0x5341 + 14a: 3854 .2byte 0x3854 + 14c: 4d5f 5841 4900 .byte 0x5f, 0x4d, 0x41, 0x58, 0x00, 0x49 + 152: 544e .2byte 0x544e + 154: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 + 15a: 3631 .2byte 0x3631 + 15c: 4d5f 4e49 5f00 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x00, 0x5f + 162: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 + 168: 5f58 .2byte 0x5f58 + 16a: 5045 .2byte 0x5045 + 16c: 4f4c4953 .4byte 0x4f4c4953 + 170: 5f4e .2byte 0x5f4e + 172: 205f 2e31 3239 .byte 0x5f, 0x20, 0x31, 0x2e, 0x39, 0x32 + 178: 3935 .2byte 0x3935 + 17a: 3932 .2byte 0x3932 + 17c: 3439 .2byte 0x3439 + 17e: 3334 .2byte 0x3334 + 180: 3738 .2byte 0x3738 + 182: 3332 .2byte 0x3332 + 184: 3835 .2byte 0x3835 + 186: 3335 .2byte 0x3335 + 188: 3530 .2byte 0x3530 + 18a: 3935 .2byte 0x3935 + 18c: 34393737 lui x14,0x34393 + 190: 3532 .2byte 0x3532 + 192: 3438 .2byte 0x3438 + 194: 3239 .2byte 0x3239 + 196: 65323337 lui x6,0x65323 + 19a: 332d .2byte 0x332d + 19c: 4634 .2byte 0x4634 + 19e: 3436 .2byte 0x3436 + 1a0: 0078 .2byte 0x78 + 1a2: 4e49 .2byte 0x4e49 + 1a4: 5f54 .2byte 0x5f54 + 1a6: 454c .2byte 0x454c + 1a8: 5341 .2byte 0x5341 + 1aa: 3154 .2byte 0x3154 + 1ac: 5f36 .2byte 0x5f36 + 1ae: 414d .2byte 0x414d + 1b0: 2058 .2byte 0x2058 + 1b2: 5f5f 4e49 5f54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x5f + 1b8: 454c .2byte 0x454c + 1ba: 5341 .2byte 0x5341 + 1bc: 3154 .2byte 0x3154 + 1be: 5f36 .2byte 0x5f36 + 1c0: 414d .2byte 0x414d + 1c2: 5f58 .2byte 0x5f58 + 1c4: 005f 5f5f 4c46 .byte 0x5f, 0x00, 0x5f, 0x5f, 0x46, 0x4c + 1ca: 3654 .2byte 0x3654 + 1cc: 5834 .2byte 0x5834 + 1ce: 485f 5341 445f .byte 0x5f, 0x48, 0x41, 0x53, 0x5f, 0x44 + 1d4: 4e45 .2byte 0x4e45 + 1d6: 5f4d524f .4byte 0x5f4d524f + 1da: 205f 0031 5f5f .byte 0x5f, 0x20, 0x31, 0x00, 0x5f, 0x5f + 1e0: 4c46 .2byte 0x4c46 + 1e2: 3354 .2byte 0x3354 + 1e4: 5f32 .2byte 0x5f32 + 1e6: 414d .2byte 0x414d + 1e8: 544e .2byte 0x544e + 1ea: 445f 4749 5f5f .byte 0x5f, 0x44, 0x49, 0x47, 0x5f, 0x5f + 1f0: 3220 .2byte 0x3220 + 1f2: 0034 .2byte 0x34 + 1f4: 5a5f 7336 7274 .byte 0x5f, 0x5a, 0x36, 0x73, 0x74, 0x72 + 1fa: 50797063 bgeu x18,x7,6fa + 1fe: 634b5063 bge x22,x20,81e + 202: 5f00 .2byte 0x5f00 + 204: 465f 544c 3231 .byte 0x5f, 0x46, 0x4c, 0x54, 0x31, 0x32 + 20a: 5f38 .2byte 0x5f38 + 20c: 414d .2byte 0x414d + 20e: 544e .2byte 0x544e + 210: 445f 4749 5f5f .byte 0x5f, 0x44, 0x49, 0x47, 0x5f, 0x5f + 216: 3120 .2byte 0x3120 + 218: 3331 .2byte 0x3331 + 21a: 5f00 .2byte 0x5f00 + 21c: 4c5f 4244 5f4c .byte 0x5f, 0x4c, 0x44, 0x42, 0x4c, 0x5f + 222: 414d .2byte 0x414d + 224: 544e .2byte 0x544e + 226: 445f 4749 5f5f .byte 0x5f, 0x44, 0x49, 0x47, 0x5f, 0x5f + 22c: 3120 .2byte 0x3120 + 22e: 3331 .2byte 0x3331 + 230: 4900 .2byte 0x4900 + 232: 544e .2byte 0x544e + 234: 3631 .2byte 0x3631 + 236: 435f 6328 2029 .byte 0x5f, 0x43, 0x28, 0x63, 0x29, 0x20 + 23c: 5f5f 4e49 3154 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x31 + 242: 5f36 .2byte 0x5f36 + 244: 29632843 .4byte 0x29632843 + 248: 5f00 .2byte 0x5f00 + 24a: 635f 7070 645f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x64 + 250: 6465 .2byte 0x6465 + 252: 6375 .2byte 0x6375 + 254: 6974 .2byte 0x6974 + 256: 675f6e6f jal x28,f70ca <__BSS_END__+0xe4996> + 25a: 6975 .2byte 0x6975 + 25c: 6564 .2byte 0x6564 + 25e: 30322073 .4byte 0x30322073 + 262: 3731 .2byte 0x3731 + 264: 3330 .2byte 0x3330 + 266: 004c .2byte 0x4c + 268: 5f5f 4c46 3354 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x33 + 26e: 5832 .2byte 0x5832 + 270: 445f 4345 4d49 .byte 0x5f, 0x44, 0x45, 0x43, 0x49, 0x4d + 276: 4c41 .2byte 0x4c41 + 278: 445f 4749 5f5f .byte 0x5f, 0x44, 0x49, 0x47, 0x5f, 0x5f + 27e: 3120 .2byte 0x3120 + 280: 5f5f0037 lui x0,0x5f5f0 + 284: 6972 .2byte 0x6972 + 286: 5f766373 .4byte 0x5f766373 + 28a: 646f6d63 bltu x30,x6,8e4 + 28e: 6c65 .2byte 0x6c65 + 290: 6d5f 6465 6f6c .byte 0x5f, 0x6d, 0x65, 0x64, 0x6c, 0x6f + 296: 00312077 .4byte 0x312077 + 29a: 5f5f 4244 5f4c .byte 0x5f, 0x5f, 0x44, 0x42, 0x4c, 0x5f + 2a0: 494d .2byte 0x494d + 2a2: 5f4e .2byte 0x5f4e + 2a4: 5845 .2byte 0x5845 + 2a6: 5f50 .2byte 0x5f50 + 2a8: 205f 2d28 3031 .byte 0x5f, 0x20, 0x28, 0x2d, 0x31, 0x30 + 2ae: 3132 .2byte 0x3132 + 2b0: 0029 .2byte 0x29 + 2b2: 5f5f 4f4c 474e .byte 0x5f, 0x5f, 0x4c, 0x4f, 0x4e, 0x47 + 2b8: 4c5f 4e4f 5f47 .byte 0x5f, 0x4c, 0x4f, 0x4e, 0x47, 0x5f + 2be: 54444957 .4byte 0x54444957 + 2c2: 5f48 .2byte 0x5f48 + 2c4: 205f 3436 5f00 .byte 0x5f, 0x20, 0x36, 0x34, 0x00, 0x5f + 2ca: 475f 4343 415f .byte 0x5f, 0x47, 0x43, 0x43, 0x5f, 0x41 + 2d0: 4f54 .2byte 0x4f54 + 2d2: 494d .2byte 0x494d + 2d4: 48435f43 .4byte 0x48435f43 + 2d8: 5241 .2byte 0x5241 + 2da: 3631 .2byte 0x3631 + 2dc: 545f 4c5f 434f .byte 0x5f, 0x54, 0x5f, 0x4c, 0x4f, 0x43 + 2e2: 52465f4b .4byte 0x52465f4b + 2e6: 4545 .2byte 0x4545 + 2e8: 3120 .2byte 0x3120 + 2ea: 5f00 .2byte 0x5f00 + 2ec: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 + 2f2: 5f58 .2byte 0x5f58 + 2f4: 414d .2byte 0x414d + 2f6: 5f58 .2byte 0x5f58 + 2f8: 205f 2e31 3937 .byte 0x5f, 0x20, 0x31, 0x2e, 0x37, 0x39 + 2fe: 33393637 lui x12,0x33393 + 302: 3331 .2byte 0x3331 + 304: 3834 .2byte 0x3834 + 306: 3236 .2byte 0x3236 + 308: 37353133 .4byte 0x37353133 + 30c: 3830 .2byte 0x3830 + 30e: 3431 .2byte 0x3431 + 310: 3235 .2byte 0x3235 + 312: 33323437 lui x8,0x33323 + 316: 37313337 lui x6,0x37313 + 31a: 3430 .2byte 0x3430 + 31c: 65373533 .4byte 0x65373533 + 320: 3830332b .4byte 0x3830332b + 324: 3346 .2byte 0x3346 + 326: 7832 .2byte 0x7832 + 328: 5f00 .2byte 0x5f00 + 32a: 465f 544c 3231 .byte 0x5f, 0x46, 0x4c, 0x54, 0x31, 0x32 + 330: 5f38 .2byte 0x5f38 + 332: 414d .2byte 0x414d + 334: 5f58 .2byte 0x5f58 + 336: 205f 2e31 3831 .byte 0x5f, 0x20, 0x31, 0x2e, 0x31, 0x38 + 33c: 3739 .2byte 0x3739 + 33e: 39343133 .4byte 0x39343133 + 342: 3335 .2byte 0x3335 + 344: 3735 .2byte 0x3735 + 346: 3332 .2byte 0x3332 + 348: 3731 .2byte 0x3731 + 34a: 3536 .2byte 0x3536 + 34c: 3830 .2byte 0x3830 + 34e: 3735 .2byte 0x3735 + 350: 3935 .2byte 0x3935 + 352: 36363233 .4byte 0x36363233 + 356: 3832 .2byte 0x3832 + 358: 3030 .2byte 0x3030 + 35a: 65323037 lui x0,0x65323 + 35e: 3339342b .4byte 0x3339342b + 362: 4632 .2byte 0x4632 + 364: 3231 .2byte 0x3231 + 366: 0038 .2byte 0x38 + 368: 5f5f 4953 455a .byte 0x5f, 0x5f, 0x53, 0x49, 0x5a, 0x45 + 36e: 575f464f .4byte 0x575f464f + 372: 4e49 .2byte 0x4e49 + 374: 5f54 .2byte 0x5f54 + 376: 5f54 .2byte 0x5f54 + 378: 205f 0034 4955 .byte 0x5f, 0x20, 0x34, 0x00, 0x55, 0x49 + 37e: 544e .2byte 0x544e + 380: 3631 .2byte 0x3631 + 382: 435f 6328 2029 .byte 0x5f, 0x43, 0x28, 0x63, 0x29, 0x20 + 388: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 + 38e: 3631 .2byte 0x3631 + 390: 435f 6328 0029 .byte 0x5f, 0x43, 0x28, 0x63, 0x29, 0x00 + 396: 4e49 .2byte 0x4e49 + 398: 5f54 .2byte 0x5f54 + 39a: 4146 .2byte 0x4146 + 39c: 36315453 .4byte 0x36315453 + 3a0: 4d5f 5841 5f20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x5f + 3a6: 495f 544e 465f .byte 0x5f, 0x49, 0x4e, 0x54, 0x5f, 0x46 + 3ac: 5341 .2byte 0x5341 + 3ae: 3154 .2byte 0x3154 + 3b0: 5f36 .2byte 0x5f36 + 3b2: 414d .2byte 0x414d + 3b4: 5f58 .2byte 0x5f58 + 3b6: 005f 5f5f 4e47 .byte 0x5f, 0x00, 0x5f, 0x5f, 0x47, 0x4e + 3bc: 4355 .2byte 0x4355 + 3be: 4d5f 4e49 524f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x4f, 0x52 + 3c4: 5f5f 3220 5f00 .byte 0x5f, 0x5f, 0x20, 0x32, 0x00, 0x5f + 3ca: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 + 3d0: 4e5f 524f 5f4d .byte 0x5f, 0x4e, 0x4f, 0x52, 0x4d, 0x5f + 3d6: 414d .2byte 0x414d + 3d8: 5f58 .2byte 0x5f58 + 3da: 205f 2e33 3034 .byte 0x5f, 0x20, 0x33, 0x2e, 0x34, 0x30 + 3e0: 3832 .2byte 0x3832 + 3e2: 3332 .2byte 0x3332 + 3e4: 3634 .2byte 0x3634 + 3e6: 3336 .2byte 0x3336 + 3e8: 3538 .2byte 0x3538 + 3ea: 3832 .2byte 0x3832 + 3ec: 3538 .2byte 0x3538 + 3ee: 3839 .2byte 0x3839 + 3f0: 3131 .2byte 0x3131 + 3f2: 31343037 lui x0,0x31343 + 3f6: 3338 .2byte 0x3338 + 3f8: 3834 .2byte 0x3834 + 3fa: 3534 .2byte 0x3534 + 3fc: 3631 .2byte 0x3631 + 3fe: 3239 .2byte 0x3239 + 400: 6535 .2byte 0x6535 + 402: 4638332b .4byte 0x4638332b + 406: 55003233 .4byte 0x55003233 + 40a: 4e49 .2byte 0x4e49 + 40c: 3154 .2byte 0x3154 + 40e: 5f36 .2byte 0x5f36 + 410: 414d .2byte 0x414d + 412: 0058 .2byte 0x58 + 414: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f + 41a: 6568 .2byte 0x6568 + 41c: 5f78 .2byte 0x5f78 + 41e: 6c66 .2byte 0x6c66 + 420: 2074616f jal x2,46e26 <__BSS_END__+0x346f2> + 424: 3032 .2byte 0x3032 + 426: 3631 .2byte 0x3631 + 428: 3330 .2byte 0x3330 + 42a: 004c .2byte 0x4c + 42c: 4955 .2byte 0x4955 + 42e: 544e .2byte 0x544e + 430: 414d .2byte 0x414d + 432: 5f58 .2byte 0x5f58 + 434: 414d .2byte 0x414d + 436: 2058 .2byte 0x2058 + 438: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 + 43e: 414d .2byte 0x414d + 440: 5f58 .2byte 0x5f58 + 442: 414d .2byte 0x414d + 444: 5f58 .2byte 0x5f58 + 446: 005f 5f5f 4c46 .byte 0x5f, 0x00, 0x5f, 0x5f, 0x46, 0x4c + 44c: 3654 .2byte 0x3654 + 44e: 5f34 .2byte 0x5f34 + 450: 494d .2byte 0x494d + 452: 5f4e .2byte 0x5f4e + 454: 205f 2e32 3232 .byte 0x5f, 0x20, 0x32, 0x2e, 0x32, 0x32 + 45a: 3035 .2byte 0x3035 + 45c: 35383337 lui x6,0x35383 + 460: 3538 .2byte 0x3538 + 462: 3730 .2byte 0x3730 + 464: 3032 .2byte 0x3032 + 466: 3331 .2byte 0x3331 + 468: 3338 .2byte 0x3338 + 46a: 3930 .2byte 0x3930 + 46c: 3230 .2byte 0x3230 + 46e: 31373233 .4byte 0x31373233 + 472: 32333337 lui x6,0x32333 + 476: 3034 .2byte 0x3034 + 478: 3034 .2byte 0x3034 + 47a: 6536 .2byte 0x6536 + 47c: 332d .2byte 0x332d + 47e: 3830 .2byte 0x3830 + 480: 3646 .2byte 0x3646 + 482: 0034 .2byte 0x34 + 484: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 + 48a: 3631 .2byte 0x3631 + 48c: 435f 6328 2029 .byte 0x5f, 0x43, 0x28, 0x63, 0x29, 0x20 + 492: 5f5f0063 beq x30,x21,a72 + 496: 455a4953 .4byte 0x455a4953 + 49a: 535f464f .4byte 0x535f464f + 49e: 5a49 .2byte 0x5a49 + 4a0: 5f45 .2byte 0x5f45 + 4a2: 5f54 .2byte 0x5f54 + 4a4: 205f 0034 5f5f .byte 0x5f, 0x20, 0x34, 0x00, 0x5f, 0x5f + 4aa: 52414843 .4byte 0x52414843 + 4ae: 3631 .2byte 0x3631 + 4b0: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f + 4b6: 205f 6873 726f .byte 0x5f, 0x20, 0x73, 0x68, 0x6f, 0x72 + 4bc: 2074 .2byte 0x2074 + 4be: 6e75 .2byte 0x6e75 + 4c0: 6e676973 .4byte 0x6e676973 + 4c4: 6465 .2byte 0x6465 + 4c6: 6920 .2byte 0x6920 + 4c8: 746e .2byte 0x746e + 4ca: 5500 .2byte 0x5500 + 4cc: 4e49 .2byte 0x4e49 + 4ce: 5f54 .2byte 0x5f54 + 4d0: 454c .2byte 0x454c + 4d2: 5341 .2byte 0x5341 + 4d4: 3354 .2byte 0x3354 + 4d6: 5f32 .2byte 0x5f32 + 4d8: 414d .2byte 0x414d + 4da: 2058 .2byte 0x2058 + 4dc: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 + 4e2: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 + 4e8: 4d5f3233 .4byte 0x4d5f3233 + 4ec: 5841 .2byte 0x5841 + 4ee: 5f5f 5f00 635f .byte 0x5f, 0x5f, 0x00, 0x5f, 0x5f, 0x63 + 4f4: 7070 .2byte 0x7070 + 4f6: 615f 7474 6972 .byte 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69 + 4fc: 7562 .2byte 0x7562 + 4fe: 6574 .2byte 0x6574 + 500: 30322073 .4byte 0x30322073 + 504: 3830 .2byte 0x3830 + 506: 3930 .2byte 0x3930 + 508: 004c .2byte 0x4c + 50a: 4955 .2byte 0x4955 + 50c: 544e .2byte 0x544e + 50e: 5f38 .2byte 0x5f38 + 510: 414d .2byte 0x414d + 512: 2058 .2byte 0x2058 + 514: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 + 51a: 5f38 .2byte 0x5f38 + 51c: 414d .2byte 0x414d + 51e: 5f58 .2byte 0x5f58 + 520: 005f 5f5f 4e49 .byte 0x5f, 0x00, 0x5f, 0x5f, 0x49, 0x4e + 526: 5f54 .2byte 0x5f54 + 528: 4146 .2byte 0x4146 + 52a: 5f385453 .4byte 0x5f385453 + 52e: 414d .2byte 0x414d + 530: 5f58 .2byte 0x5f58 + 532: 205f 7830 6637 .byte 0x5f, 0x20, 0x30, 0x78, 0x37, 0x66 + 538: 6666 .2byte 0x6666 + 53a: 6666 .2byte 0x6666 + 53c: 6666 .2byte 0x6666 + 53e: 5f00 .2byte 0x5f00 + 540: 4f5f 4452 5245 .byte 0x5f, 0x4f, 0x52, 0x44, 0x45, 0x52 + 546: 425f 4749 455f .byte 0x5f, 0x42, 0x49, 0x47, 0x5f, 0x45 + 54c: 444e .2byte 0x444e + 54e: 4149 .2byte 0x4149 + 550: 5f4e .2byte 0x5f4e + 552: 205f 3334 3132 .byte 0x5f, 0x20, 0x34, 0x33, 0x32, 0x31 + 558: 5f00 .2byte 0x5f00 + 55a: 505f 5254 4944 .byte 0x5f, 0x50, 0x54, 0x52, 0x44, 0x49 + 560: 4646 .2byte 0x4646 + 562: 575f 4449 4854 .byte 0x5f, 0x57, 0x49, 0x44, 0x54, 0x48 + 568: 5f5f 3320 0032 .byte 0x5f, 0x5f, 0x20, 0x33, 0x32, 0x00 + 56e: 5f5f 4244 5f4c .byte 0x5f, 0x5f, 0x44, 0x42, 0x4c, 0x5f + 574: 414d .2byte 0x414d + 576: 544e .2byte 0x544e + 578: 445f 4749 5f5f .byte 0x5f, 0x44, 0x49, 0x47, 0x5f, 0x5f + 57e: 3520 .2byte 0x3520 + 580: 5f5f0033 .4byte 0x5f5f0033 + 584: 4955 .2byte 0x4955 + 586: 544e .2byte 0x544e + 588: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 + 58e: 3436 .2byte 0x3436 + 590: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f + 596: 205f 6f6c 676e .byte 0x5f, 0x20, 0x6c, 0x6f, 0x6e, 0x67 + 59c: 6c20 .2byte 0x6c20 + 59e: 20676e6f jal x28,767a4 <__BSS_END__+0x64070> + 5a2: 6e75 .2byte 0x6e75 + 5a4: 6e676973 .4byte 0x6e676973 + 5a8: 6465 .2byte 0x6465 + 5aa: 6920 .2byte 0x6920 + 5ac: 746e .2byte 0x746e + 5ae: 5f00 .2byte 0x5f00 + 5b0: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 + 5b6: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 5bc: 3320 .2byte 0x3320 + 5be: 342e .2byte 0x342e + 5c0: 3230 .2byte 0x3230 + 5c2: 3238 .2byte 0x3238 + 5c4: 36363433 .4byte 0x36363433 + 5c8: 32353833 .4byte 0x32353833 + 5cc: 3838 .2byte 0x3838 + 5ce: 3935 .2byte 0x3935 + 5d0: 3138 .2byte 0x3138 + 5d2: 3731 .2byte 0x3731 + 5d4: 3430 .2byte 0x3430 + 5d6: 3831 .2byte 0x3831 + 5d8: 34383433 .4byte 0x34383433 + 5dc: 3135 .2byte 0x3135 + 5de: 3936 .2byte 0x3936 + 5e0: 3532 .2byte 0x3532 + 5e2: 2b65 .2byte 0x2b65 + 5e4: 33463833 .4byte 0x33463833 + 5e8: 0032 .2byte 0x32 + 5ea: 5f5f 4e49 5f54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x5f + 5f0: 414d .2byte 0x414d + 5f2: 5f58 .2byte 0x5f58 + 5f4: 205f 7830 6637 .byte 0x5f, 0x20, 0x30, 0x78, 0x37, 0x66 + 5fa: 6666 .2byte 0x6666 + 5fc: 6666 .2byte 0x6666 + 5fe: 6666 .2byte 0x6666 + 600: 5f00 .2byte 0x5f00 + 602: 415f 4f54 494d .byte 0x5f, 0x41, 0x54, 0x4f, 0x4d, 0x49 + 608: 45525f43 .4byte 0x45525f43 + 60c: 454c .2byte 0x454c + 60e: 5341 .2byte 0x5341 + 610: 2045 .2byte 0x2045 + 612: 5f5f0033 .4byte 0x5f5f0033 + 616: 4c46 .2byte 0x4c46 + 618: 5f54 .2byte 0x5f54 + 61a: 5349 .2byte 0x5349 + 61c: 495f 4345 365f .byte 0x5f, 0x49, 0x45, 0x43, 0x5f, 0x36 + 622: 3530 .2byte 0x3530 + 624: 3935 .2byte 0x3935 + 626: 5f5f 3220 5f00 .byte 0x5f, 0x5f, 0x20, 0x32, 0x00, 0x5f + 62c: 505f 5254 4944 .byte 0x5f, 0x50, 0x54, 0x52, 0x44, 0x49 + 632: 4646 .2byte 0x4646 + 634: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f + 63a: 205f 6e69 0074 .byte 0x5f, 0x20, 0x69, 0x6e, 0x74, 0x00 + 640: 5f5f 4843 5241 .byte 0x5f, 0x5f, 0x43, 0x48, 0x41, 0x52 + 646: 555f 534e 4749 .byte 0x5f, 0x55, 0x4e, 0x53, 0x49, 0x47 + 64c: 454e .2byte 0x454e + 64e: 5f44 .2byte 0x5f44 + 650: 205f 0031 5f5f .byte 0x5f, 0x20, 0x31, 0x00, 0x5f, 0x5f + 656: 4e49 .2byte 0x4e49 + 658: 3154 .2byte 0x3154 + 65a: 5f36 .2byte 0x5f36 + 65c: 5954 .2byte 0x5954 + 65e: 4550 .2byte 0x4550 + 660: 5f5f 7320 6f68 .byte 0x5f, 0x5f, 0x20, 0x73, 0x68, 0x6f + 666: 7472 .2byte 0x7472 + 668: 6920 .2byte 0x6920 + 66a: 746e .2byte 0x746e + 66c: 5f00 .2byte 0x5f00 + 66e: 475f 4343 415f .byte 0x5f, 0x47, 0x43, 0x43, 0x5f, 0x41 + 674: 4f54 .2byte 0x4f54 + 676: 494d .2byte 0x494d + 678: 48435f43 .4byte 0x48435f43 + 67c: 5241 .2byte 0x5241 + 67e: 4c5f 434f 5f4b .byte 0x5f, 0x4c, 0x4f, 0x43, 0x4b, 0x5f + 684: 5246 .2byte 0x5246 + 686: 4545 .2byte 0x4545 + 688: 3120 .2byte 0x3120 + 68a: 4900 .2byte 0x4900 + 68c: 544e .2byte 0x544e + 68e: 414d .2byte 0x414d + 690: 5f58 .2byte 0x5f58 + 692: 414d .2byte 0x414d + 694: 2058 .2byte 0x2058 + 696: 5f5f 4e49 4d54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x4d + 69c: 5841 .2byte 0x5841 + 69e: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 6a4: 5f00 .2byte 0x5f00 + 6a6: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 + 6ac: 5f58 .2byte 0x5f58 + 6ae: 414d .2byte 0x414d + 6b0: 5f58 .2byte 0x5f58 + 6b2: 5845 .2byte 0x5845 + 6b4: 5f50 .2byte 0x5f50 + 6b6: 205f 3631 3833 .byte 0x5f, 0x20, 0x31, 0x36, 0x33, 0x38 + 6bc: 0034 .2byte 0x34 + 6be: 5f5f 5441 4d4f .byte 0x5f, 0x5f, 0x41, 0x54, 0x4f, 0x4d + 6c4: 4349 .2byte 0x4349 + 6c6: 535f 5145 435f .byte 0x5f, 0x53, 0x45, 0x51, 0x5f, 0x43 + 6cc: 35205453 .4byte 0x35205453 + 6d0: 5f00 .2byte 0x5f00 + 6d2: 495f 544e 3631 .byte 0x5f, 0x49, 0x4e, 0x54, 0x31, 0x36 + 6d8: 435f 6328 2029 .byte 0x5f, 0x43, 0x28, 0x63, 0x29, 0x20 + 6de: 5f5f0063 beq x30,x21,cbe + 6e2: 455a4953 .4byte 0x455a4953 + 6e6: 535f464f .4byte 0x535f464f + 6ea: 4f48 .2byte 0x4f48 + 6ec: 5452 .2byte 0x5452 + 6ee: 5f5f 3220 5f00 .byte 0x5f, 0x5f, 0x20, 0x32, 0x00, 0x5f + 6f4: 495f 544e 4c5f .byte 0x5f, 0x49, 0x4e, 0x54, 0x5f, 0x4c + 6fa: 4145 .2byte 0x4145 + 6fc: 5f385453 .4byte 0x5f385453 + 700: 414d .2byte 0x414d + 702: 5f58 .2byte 0x5f58 + 704: 205f 7830 6637 .byte 0x5f, 0x20, 0x30, 0x78, 0x37, 0x66 + 70a: 5f00 .2byte 0x5f00 + 70c: 495f 544e 4c5f .byte 0x5f, 0x49, 0x4e, 0x54, 0x5f, 0x4c + 712: 4145 .2byte 0x4145 + 714: 5f385453 .4byte 0x5f385453 + 718: 5954 .2byte 0x5954 + 71a: 4550 .2byte 0x4550 + 71c: 5f5f 7320 6769 .byte 0x5f, 0x5f, 0x20, 0x73, 0x69, 0x67 + 722: 656e .2byte 0x656e + 724: 2064 .2byte 0x2064 + 726: 72616863 bltu x2,x6,e56 + 72a: 5f00 .2byte 0x5f00 + 72c: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 + 732: 4d5f 4e41 5f54 .byte 0x5f, 0x4d, 0x41, 0x4e, 0x54, 0x5f + 738: 4944 .2byte 0x4944 + 73a: 205f5f47 .4byte 0x205f5f47 + 73e: 3335 .2byte 0x3335 + 740: 5500 .2byte 0x5500 + 742: 4e49 .2byte 0x4e49 + 744: 5f54 .2byte 0x5f54 + 746: 454c .2byte 0x454c + 748: 5341 .2byte 0x5341 + 74a: 3854 .2byte 0x3854 + 74c: 4d5f 5841 5f20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x5f + 752: 555f 4e49 5f54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x5f + 758: 454c .2byte 0x454c + 75a: 5341 .2byte 0x5341 + 75c: 3854 .2byte 0x3854 + 75e: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 764: 5f00 .2byte 0x5f00 + 766: 555f 4e49 4d54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x4d + 76c: 5841 .2byte 0x5841 + 76e: 435f 6328 2029 .byte 0x5f, 0x43, 0x28, 0x63, 0x29, 0x20 + 774: 23232063 .4byte 0x23232063 + 778: 5520 .2byte 0x5520 + 77a: 4c4c .2byte 0x4c4c + 77c: 5f00 .2byte 0x5f00 + 77e: 635f 7070 725f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x72 + 784: 6665 .2byte 0x6665 + 786: 715f 6175 696c .byte 0x5f, 0x71, 0x75, 0x61, 0x6c, 0x69 + 78c: 6966 .2byte 0x6966 + 78e: 7265 .2byte 0x7265 + 790: 30322073 .4byte 0x30322073 + 794: 3730 .2byte 0x3730 + 796: 3031 .2byte 0x3031 + 798: 004c .2byte 0x4c + 79a: 5f5f 5942 4554 .byte 0x5f, 0x5f, 0x42, 0x59, 0x54, 0x45 + 7a0: 4f5f 4452 5245 .byte 0x5f, 0x4f, 0x52, 0x44, 0x45, 0x52 + 7a6: 5f5f 5f20 4f5f .byte 0x5f, 0x5f, 0x20, 0x5f, 0x5f, 0x4f + 7ac: 4452 .2byte 0x4452 + 7ae: 5245 .2byte 0x5245 + 7b0: 4c5f 5449 4c54 .byte 0x5f, 0x4c, 0x49, 0x54, 0x54, 0x4c + 7b6: 5f45 .2byte 0x5f45 + 7b8: 4e45 .2byte 0x4e45 + 7ba: 4944 .2byte 0x4944 + 7bc: 4e41 .2byte 0x4e41 + 7be: 5f5f 5f00 4c5f .byte 0x5f, 0x5f, 0x00, 0x5f, 0x5f, 0x4c + 7c4: 4244 .2byte 0x4244 + 7c6: 5f4c .2byte 0x5f4c + 7c8: 494d .2byte 0x494d + 7ca: 5f4e .2byte 0x5f4e + 7cc: 205f 2e33 3633 .byte 0x5f, 0x20, 0x33, 0x2e, 0x33, 0x36 + 7d2: 3132 .2byte 0x3132 + 7d4: 3330 .2byte 0x3330 + 7d6: 3431 .2byte 0x3431 + 7d8: 32313133 .4byte 0x32313133 + 7dc: 3930 .2byte 0x3930 + 7de: 36303533 .4byte 0x36303533 + 7e2: 3632 .2byte 0x3632 + 7e4: 3632 .2byte 0x3632 + 7e6: 31383737 lui x14,0x31383 + 7ea: 31323337 lui x6,0x31323 + 7ee: 36323537 lui x10,0x36323 + 7f2: 6530 .2byte 0x6530 + 7f4: 342d .2byte 0x342d + 7f6: 3339 .2byte 0x3339 + 7f8: 4c32 .2byte 0x4c32 + 7fa: 5f00 .2byte 0x5f00 + 7fc: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 + 802: 4d5f 4e49 315f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x31 + 808: 5f30 .2byte 0x5f30 + 80a: 5845 .2byte 0x5845 + 80c: 5f50 .2byte 0x5f50 + 80e: 205f 2d28 3733 .byte 0x5f, 0x20, 0x28, 0x2d, 0x33, 0x37 + 814: 0029 .2byte 0x29 + 816: 5f474953 .4byte 0x5f474953 + 81a: 5441 .2byte 0x5441 + 81c: 43494d4f .4byte 0x43494d4f + 820: 4d5f 4e49 5f20 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x20, 0x5f + 826: 535f 4749 415f .byte 0x5f, 0x53, 0x49, 0x47, 0x5f, 0x41 + 82c: 4f54 .2byte 0x4f54 + 82e: 494d .2byte 0x494d + 830: 494d5f43 .4byte 0x494d5f43 + 834: 5f4e .2byte 0x5f4e + 836: 005f 5f5f 7063 .byte 0x5f, 0x00, 0x5f, 0x5f, 0x63, 0x70 + 83c: 5f70 .2byte 0x5f70 + 83e: 6572 .2byte 0x6572 + 840: 7574 .2byte 0x7574 + 842: 6e72 .2byte 0x6e72 + 844: 745f 7079 5f65 .byte 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f + 84a: 6564 .2byte 0x6564 + 84c: 7564 .2byte 0x7564 + 84e: 6f697463 bgeu x18,x22,f36 + 852: 206e .2byte 0x206e + 854: 3032 .2byte 0x3032 + 856: 3331 .2byte 0x3331 + 858: 3430 .2byte 0x3430 + 85a: 004c .2byte 0x4c + 85c: 5f5f 4357 4148 .byte 0x5f, 0x5f, 0x57, 0x43, 0x48, 0x41 + 862: 5f52 .2byte 0x5f52 + 864: 494d .2byte 0x494d + 866: 5f4e .2byte 0x5f4e + 868: 205f 2d28 5f5f .byte 0x5f, 0x20, 0x28, 0x2d, 0x5f, 0x5f + 86e: 41484357 .4byte 0x41484357 + 872: 5f52 .2byte 0x5f52 + 874: 414d .2byte 0x414d + 876: 5f58 .2byte 0x5f58 + 878: 205f 202d 2931 .byte 0x5f, 0x20, 0x2d, 0x20, 0x31, 0x29 + 87e: 4900 .2byte 0x4900 + 880: 544e .2byte 0x544e + 882: 414d .2byte 0x414d + 884: 5f58 .2byte 0x5f58 + 886: 494d .2byte 0x494d + 888: 204e .2byte 0x204e + 88a: 2d28 .2byte 0x2d28 + 88c: 4e49 .2byte 0x4e49 + 88e: 4d54 .2byte 0x4d54 + 890: 5841 .2byte 0x5841 + 892: 4d5f 5841 2d20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x2d + 898: 3120 .2byte 0x3120 + 89a: 0029 .2byte 0x29 + 89c: 5f5f 5453 4344 .byte 0x5f, 0x5f, 0x53, 0x54, 0x44, 0x43 + 8a2: 555f 4654 335f .byte 0x5f, 0x55, 0x54, 0x46, 0x5f, 0x33 + 8a8: 5f32 .2byte 0x5f32 + 8aa: 205f 0031 5f5f .byte 0x5f, 0x20, 0x31, 0x00, 0x5f, 0x5f + 8b0: 4e49 .2byte 0x4e49 + 8b2: 5f54 .2byte 0x5f54 + 8b4: 454c .2byte 0x454c + 8b6: 5341 .2byte 0x5341 + 8b8: 3154 .2byte 0x3154 + 8ba: 5f36 .2byte 0x5f36 + 8bc: 414d .2byte 0x414d + 8be: 5f58 .2byte 0x5f58 + 8c0: 205f 7830 6637 .byte 0x5f, 0x20, 0x30, 0x78, 0x37, 0x66 + 8c6: 6666 .2byte 0x6666 + 8c8: 5f00 .2byte 0x5f00 + 8ca: 535f 4843 5241 .byte 0x5f, 0x53, 0x43, 0x48, 0x41, 0x52 + 8d0: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 8d6: 3020 .2byte 0x3020 + 8d8: 3778 .2byte 0x3778 + 8da: 0066 .2byte 0x66 + 8dc: 5f5f 444c 4c42 .byte 0x5f, 0x5f, 0x4c, 0x44, 0x42, 0x4c + 8e2: 445f 4e45 524f .byte 0x5f, 0x44, 0x45, 0x4e, 0x4f, 0x52 + 8e8: 5f4d .2byte 0x5f4d + 8ea: 494d .2byte 0x494d + 8ec: 5f4e .2byte 0x5f4e + 8ee: 205f 2e36 3734 .byte 0x5f, 0x20, 0x36, 0x2e, 0x34, 0x37 + 8f4: 3135 .2byte 0x3135 + 8f6: 31313537 lui x10,0x31313 + 8fa: 3439 .2byte 0x3439 + 8fc: 32303833 .4byte 0x32303833 + 900: 3135 .2byte 0x3135 + 902: 3031 .2byte 0x3031 + 904: 3239 .2byte 0x3239 + 906: 3434 .2byte 0x3434 + 908: 35393833 .4byte 0x35393833 + 90c: 3238 .2byte 0x3238 + 90e: 3732 .2byte 0x3732 + 910: 3436 .2byte 0x3436 + 912: 3536 .2byte 0x3536 + 914: 6535 .2byte 0x6535 + 916: 342d .2byte 0x342d + 918: 3639 .2byte 0x3639 + 91a: 4c36 .2byte 0x4c36 + 91c: 5f00 .2byte 0x5f00 + 91e: 475f 554e 5f43 .byte 0x5f, 0x47, 0x4e, 0x55, 0x43, 0x5f + 924: 5845 .2byte 0x5845 + 926: 4345 .2byte 0x4345 + 928: 5455 .2byte 0x5455 + 92a: 4f49 .2byte 0x4f49 + 92c: 5f4e .2byte 0x5f4e + 92e: 52414843 .4byte 0x52414843 + 932: 5f544553 .4byte 0x5f544553 + 936: 414e .2byte 0x414e + 938: 454d .2byte 0x454d + 93a: 2220 .2byte 0x2220 + 93c: 5455 .2byte 0x5455 + 93e: 2d46 .2byte 0x2d46 + 940: 2238 .2byte 0x2238 + 942: 5f00 .2byte 0x5f00 + 944: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 + 94a: 445f 4749 5f5f .byte 0x5f, 0x44, 0x49, 0x47, 0x5f, 0x5f + 950: 3120 .2byte 0x3120 + 952: 0035 .2byte 0x35 + 954: 4e49 .2byte 0x4e49 + 956: 5f54 .2byte 0x5f54 + 958: 454c .2byte 0x454c + 95a: 5341 .2byte 0x5341 + 95c: 3154 .2byte 0x3154 + 95e: 5f36 .2byte 0x5f36 + 960: 494d .2byte 0x494d + 962: 204e .2byte 0x204e + 964: 2d28 .2byte 0x2d28 + 966: 4e49 .2byte 0x4e49 + 968: 5f54 .2byte 0x5f54 + 96a: 454c .2byte 0x454c + 96c: 5341 .2byte 0x5341 + 96e: 3154 .2byte 0x3154 + 970: 5f36 .2byte 0x5f36 + 972: 414d .2byte 0x414d + 974: 2058 .2byte 0x2058 + 976: 202d .2byte 0x202d + 978: 2931 .2byte 0x2931 + 97a: 5f00 .2byte 0x5f00 + 97c: 415f 4f54 494d .byte 0x5f, 0x41, 0x54, 0x4f, 0x4d, 0x49 + 982: 45525f43 .4byte 0x45525f43 + 986: 414c .2byte 0x414c + 988: 4558 .2byte 0x4558 + 98a: 2044 .2byte 0x2044 + 98c: 0030 .2byte 0x30 + 98e: 4e49 .2byte 0x4e49 + 990: 5054 .2byte 0x5054 + 992: 5254 .2byte 0x5254 + 994: 4d5f 5841 5f20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x5f + 99a: 495f 544e 5450 .byte 0x5f, 0x49, 0x4e, 0x54, 0x50, 0x54 + 9a0: 5f52 .2byte 0x5f52 + 9a2: 414d .2byte 0x414d + 9a4: 5f58 .2byte 0x5f58 + 9a6: 005f 5f5f 4953 .byte 0x5f, 0x00, 0x5f, 0x5f, 0x53, 0x49 + 9ac: 455a .2byte 0x455a + 9ae: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 9b4: 3020 .2byte 0x3020 + 9b6: 6678 .2byte 0x6678 + 9b8: 6666 .2byte 0x6666 + 9ba: 6666 .2byte 0x6666 + 9bc: 6666 .2byte 0x6666 + 9be: 5566 .2byte 0x5566 + 9c0: 5f00 .2byte 0x5f00 + 9c2: 4c5f 4244 5f4c .byte 0x5f, 0x4c, 0x44, 0x42, 0x4c, 0x5f + 9c8: 5349 .2byte 0x5349 + 9ca: 495f 4345 365f .byte 0x5f, 0x49, 0x45, 0x43, 0x5f, 0x36 + 9d0: 3530 .2byte 0x3530 + 9d2: 3935 .2byte 0x3935 + 9d4: 5f5f 3220 5f00 .byte 0x5f, 0x5f, 0x20, 0x32, 0x00, 0x5f + 9da: 635f 7070 695f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x69 + 9e0: 696e .2byte 0x696e + 9e2: 5f74 .2byte 0x5f74 + 9e4: 74706163 bltu x0,x7,1126 + 9e8: 7275 .2byte 0x7275 + 9ea: 7365 .2byte 0x7365 + 9ec: 3220 .2byte 0x3220 + 9ee: 3130 .2byte 0x3130 + 9f0: 4c343033 .4byte 0x4c343033 + 9f4: 5f00 .2byte 0x5f00 + 9f6: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 + 9fc: 5f58 .2byte 0x5f58 + 9fe: 4148 .2byte 0x4148 + a00: 4e495f53 .4byte 0x4e495f53 + a04: 4946 .2byte 0x4946 + a06: 494e .2byte 0x494e + a08: 5954 .2byte 0x5954 + a0a: 5f5f 3120 5f00 .byte 0x5f, 0x5f, 0x20, 0x31, 0x00, 0x5f + a10: 495f 544e 465f .byte 0x5f, 0x49, 0x4e, 0x54, 0x5f, 0x46 + a16: 5341 .2byte 0x5341 + a18: 3654 .2byte 0x3654 + a1a: 5f34 .2byte 0x5f34 + a1c: 5954 .2byte 0x5954 + a1e: 4550 .2byte 0x4550 + a20: 5f5f 6c20 6e6f .byte 0x5f, 0x5f, 0x20, 0x6c, 0x6f, 0x6e + a26: 6f6c2067 .4byte 0x6f6c2067 + a2a: 676e .2byte 0x676e + a2c: 6920 .2byte 0x6920 + a2e: 746e .2byte 0x746e + a30: 4900 .2byte 0x4900 + a32: 544e .2byte 0x544e + a34: 5f38 .2byte 0x5f38 + a36: 494d .2byte 0x494d + a38: 004e .2byte 0x4e + a3a: 5f5f 4c46 3154 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x31 + a40: 3832 .2byte 0x3832 + a42: 485f 5341 515f .byte 0x5f, 0x48, 0x41, 0x53, 0x5f, 0x51 + a48: 4955 .2byte 0x4955 + a4a: 5445 .2byte 0x5445 + a4c: 4e5f 4e41 5f5f .byte 0x5f, 0x4e, 0x41, 0x4e, 0x5f, 0x5f + a52: 3120 .2byte 0x3120 + a54: 5f00 .2byte 0x5f00 + a56: 495f 544e 4c5f .byte 0x5f, 0x49, 0x4e, 0x54, 0x5f, 0x4c + a5c: 4145 .2byte 0x4145 + a5e: 36315453 .4byte 0x36315453 + a62: 575f 4449 4854 .byte 0x5f, 0x57, 0x49, 0x44, 0x54, 0x48 + a68: 5f5f 3120 0036 .byte 0x5f, 0x5f, 0x20, 0x31, 0x36, 0x00 + a6e: 63727473 .4byte 0x63727473 + a72: 7970 .2byte 0x7970 + a74: 4900 .2byte 0x4900 + a76: 544e .2byte 0x544e + a78: 465f 5341 3154 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x31 + a7e: 5f36 .2byte 0x5f36 + a80: 494d .2byte 0x494d + a82: 004e .2byte 0x4e + a84: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f + a8a: 6f6e .2byte 0x6f6e + a8c: 7865 .2byte 0x7865 + a8e: 74706563 bltu x0,x7,11d8 + a92: 665f 6e75 7463 .byte 0x5f, 0x66, 0x75, 0x6e, 0x63, 0x74 + a98: 6f69 .2byte 0x6f69 + a9a: 5f6e .2byte 0x5f6e + a9c: 7974 .2byte 0x7974 + a9e: 6570 .2byte 0x6570 + aa0: 3220 .2byte 0x3220 + aa2: 3130 .2byte 0x3130 + aa4: 3135 .2byte 0x3135 + aa6: 4c30 .2byte 0x4c30 + aa8: 5f00 .2byte 0x5f00 + aaa: 555f 4e49 5054 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x50 + ab0: 5254 .2byte 0x5254 + ab2: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f + ab8: 205f 6e75 6973 .byte 0x5f, 0x20, 0x75, 0x6e, 0x73, 0x69 + abe: 64656e67 .4byte 0x64656e67 + ac2: 6920 .2byte 0x6920 + ac4: 746e .2byte 0x746e + ac6: 5f00 .2byte 0x5f00 + ac8: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 + ace: 495f 5f53 4549 .byte 0x5f, 0x49, 0x53, 0x5f, 0x49, 0x45 + ad4: 30365f43 .4byte 0x30365f43 + ad8: 3535 .2byte 0x3535 + ada: 5f39 .2byte 0x5f39 + adc: 205f 0032 5f5f .byte 0x5f, 0x20, 0x32, 0x00, 0x5f, 0x5f + ae2: 4c46 .2byte 0x4c46 + ae4: 3354 .2byte 0x3354 + ae6: 5f32 .2byte 0x5f32 + ae8: 4148 .2byte 0x4148 + aea: 45445f53 .4byte 0x45445f53 + aee: 4f4e .2byte 0x4f4e + af0: 4d52 .2byte 0x4d52 + af2: 5f5f 3120 5f00 .byte 0x5f, 0x5f, 0x20, 0x31, 0x00, 0x5f + af8: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 + afe: 5f58 .2byte 0x5f58 + b00: 494d .2byte 0x494d + b02: 5f4e .2byte 0x5f4e + b04: 5845 .2byte 0x5845 + b06: 5f50 .2byte 0x5f50 + b08: 205f 2d28 3631 .byte 0x5f, 0x20, 0x28, 0x2d, 0x31, 0x36 + b0e: 29313833 .4byte 0x29313833 + b12: 5f00 .2byte 0x5f00 + b14: 635f 7070 615f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x61 + b1a: 696c .2byte 0x696c + b1c: 7361 .2byte 0x7361 + b1e: 745f 6d65 6c70 .byte 0x5f, 0x74, 0x65, 0x6d, 0x70, 0x6c + b24: 7461 .2byte 0x7461 + b26: 7365 .2byte 0x7365 + b28: 3220 .2byte 0x3220 + b2a: 3030 .2byte 0x3030 + b2c: 4c343037 lui x0,0x4c343 + b30: 5f00 .2byte 0x5f00 + b32: 495f 544e 465f .byte 0x5f, 0x49, 0x4e, 0x54, 0x5f, 0x46 + b38: 5341 .2byte 0x5341 + b3a: 3654 .2byte 0x3654 + b3c: 5f34 .2byte 0x5f34 + b3e: 414d .2byte 0x414d + b40: 5f58 .2byte 0x5f58 + b42: 205f 7830 6637 .byte 0x5f, 0x20, 0x30, 0x78, 0x37, 0x66 + b48: 6666 .2byte 0x6666 + b4a: 6666 .2byte 0x6666 + b4c: 6666 .2byte 0x6666 + b4e: 6666 .2byte 0x6666 + b50: 6666 .2byte 0x6666 + b52: 6666 .2byte 0x6666 + b54: 6666 .2byte 0x6666 + b56: 4c4c .2byte 0x4c4c + b58: 5f00 .2byte 0x5f00 + b5a: 465f 544c 445f .byte 0x5f, 0x46, 0x4c, 0x54, 0x5f, 0x44 + b60: 4749 .2byte 0x4749 + b62: 5f5f 3620 5f00 .byte 0x5f, 0x5f, 0x20, 0x36, 0x00, 0x5f + b68: 495f 544e 465f .byte 0x5f, 0x49, 0x4e, 0x54, 0x5f, 0x46 + b6e: 5341 .2byte 0x5341 + b70: 3154 .2byte 0x3154 + b72: 5f36 .2byte 0x5f36 + b74: 414d .2byte 0x414d + b76: 5f58 .2byte 0x5f58 + b78: 205f 7830 6637 .byte 0x5f, 0x20, 0x30, 0x78, 0x37, 0x66 + b7e: 6666 .2byte 0x6666 + b80: 6666 .2byte 0x6666 + b82: 6666 .2byte 0x6666 + b84: 5300 .2byte 0x5300 + b86: 4749 .2byte 0x4749 + b88: 415f 4f54 494d .byte 0x5f, 0x41, 0x54, 0x4f, 0x4d, 0x49 + b8e: 414d5f43 .4byte 0x414d5f43 + b92: 0058 .2byte 0x58 + b94: 5f5f 4c46 3654 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x36 + b9a: 5f34 .2byte 0x5f34 + b9c: 5045 .2byte 0x5045 + b9e: 4f4c4953 .4byte 0x4f4c4953 + ba2: 5f4e .2byte 0x5f4e + ba4: 205f 2e32 3232 .byte 0x5f, 0x20, 0x32, 0x2e, 0x32, 0x32 + baa: 3430 .2byte 0x3430 + bac: 3634 .2byte 0x3634 + bae: 3430 .2byte 0x3430 + bb0: 3239 .2byte 0x3239 + bb2: 3035 .2byte 0x3035 + bb4: 30333133 .4byte 0x30333133 + bb8: 3038 .2byte 0x3038 + bba: 3438 .2byte 0x3438 + bbc: 33363237 lui x4,0x33363 + bc0: 31363333 .4byte 0x31363333 + bc4: 3138 .2byte 0x3138 + bc6: 3436 .2byte 0x3436 + bc8: 3630 .2byte 0x3630 + bca: 6532 .2byte 0x6532 + bcc: 312d .2byte 0x312d + bce: 4636 .2byte 0x4636 + bd0: 3436 .2byte 0x3436 + bd2: 4900 .2byte 0x4900 + bd4: 544e .2byte 0x544e + bd6: 465f 5341 3854 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x38 + bdc: 4d5f 5841 5f20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x5f + be2: 495f 544e 465f .byte 0x5f, 0x49, 0x4e, 0x54, 0x5f, 0x46 + be8: 5341 .2byte 0x5341 + bea: 3854 .2byte 0x3854 + bec: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + bf2: 5f00 .2byte 0x5f00 + bf4: 465f 544c 3231 .byte 0x5f, 0x46, 0x4c, 0x54, 0x31, 0x32 + bfa: 5f38 .2byte 0x5f38 + bfc: 494d .2byte 0x494d + bfe: 5f4e .2byte 0x5f4e + c00: 5845 .2byte 0x5845 + c02: 5f50 .2byte 0x5f50 + c04: 205f 2d28 3631 .byte 0x5f, 0x20, 0x28, 0x2d, 0x31, 0x36 + c0a: 29313833 .4byte 0x29313833 + c0e: 5f00 .2byte 0x5f00 + c10: 505f 5254 4944 .byte 0x5f, 0x50, 0x54, 0x52, 0x44, 0x49 + c16: 4646 .2byte 0x4646 + c18: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + c1e: 3020 .2byte 0x3020 + c20: 3778 .2byte 0x3778 + c22: 6666 .2byte 0x6666 + c24: 6666 .2byte 0x6666 + c26: 6666 .2byte 0x6666 + c28: 0066 .2byte 0x66 + c2a: 5f5f 4c46 3354 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x33 + c30: 5f32 .2byte 0x5f32 + c32: 4148 .2byte 0x4148 + c34: 55515f53 .4byte 0x55515f53 + c38: 4549 .2byte 0x4549 + c3a: 5f54 .2byte 0x5f54 + c3c: 414e .2byte 0x414e + c3e: 5f4e .2byte 0x5f4e + c40: 205f 0031 5f5f .byte 0x5f, 0x20, 0x31, 0x00, 0x5f, 0x5f + c46: 4955 .2byte 0x4955 + c48: 544e .2byte 0x544e + c4a: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 + c50: 3631 .2byte 0x3631 + c52: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + c58: 3020 .2byte 0x3020 + c5a: 6678 .2byte 0x6678 + c5c: 6666 .2byte 0x6666 + c5e: 0066 .2byte 0x66 + c60: 5f5f 4c46 3354 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x33 + c66: 5f32 .2byte 0x5f32 + c68: 4544 .2byte 0x4544 + c6a: 414d4943 .4byte 0x414d4943 + c6e: 5f4c .2byte 0x5f4c + c70: 4944 .2byte 0x4944 + c72: 205f5f47 .4byte 0x205f5f47 + c76: 0039 .2byte 0x39 + c78: 5f5f 4e47 4355 .byte 0x5f, 0x5f, 0x47, 0x4e, 0x55, 0x43 + c7e: 5f5f 3120 0032 .byte 0x5f, 0x5f, 0x20, 0x31, 0x32, 0x00 + c84: 5f5f 444c 4c42 .byte 0x5f, 0x5f, 0x4c, 0x44, 0x42, 0x4c + c8a: 445f 4749 5f5f .byte 0x5f, 0x44, 0x49, 0x47, 0x5f, 0x5f + c90: 3320 .2byte 0x3320 + c92: 5f5f0033 .4byte 0x5f5f0033 + c96: 4955 .2byte 0x4955 + c98: 544e .2byte 0x544e + c9a: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 + ca0: 5f38 .2byte 0x5f38 + ca2: 414d .2byte 0x414d + ca4: 5f58 .2byte 0x5f58 + ca6: 205f 7830 6666 .byte 0x5f, 0x20, 0x30, 0x78, 0x66, 0x66 + cac: 5f00 .2byte 0x5f00 + cae: 495f 544e 3436 .byte 0x5f, 0x49, 0x4e, 0x54, 0x36, 0x34 + cb4: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + cba: 3020 .2byte 0x3020 + cbc: 3778 .2byte 0x3778 + cbe: 6666 .2byte 0x6666 + cc0: 6666 .2byte 0x6666 + cc2: 6666 .2byte 0x6666 + cc4: 6666 .2byte 0x6666 + cc6: 6666 .2byte 0x6666 + cc8: 6666 .2byte 0x6666 + cca: 6666 .2byte 0x6666 + ccc: 4c66 .2byte 0x4c66 + cce: 004c .2byte 0x4c + cd0: 4e49 .2byte 0x4e49 + cd2: 3854 .2byte 0x3854 + cd4: 4d5f 4e49 2820 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x20, 0x28 + cda: 492d .2byte 0x492d + cdc: 544e .2byte 0x544e + cde: 5f38 .2byte 0x5f38 + ce0: 414d .2byte 0x414d + ce2: 2058 .2byte 0x2058 + ce4: 202d .2byte 0x202d + ce6: 2931 .2byte 0x2931 + ce8: 5f00 .2byte 0x5f00 + cea: 575f 4843 5241 .byte 0x5f, 0x57, 0x43, 0x48, 0x41, 0x52 + cf0: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f + cf6: 205f 6e69 0074 .byte 0x5f, 0x20, 0x69, 0x6e, 0x74, 0x00 + cfc: 5f5f 4e49 3854 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x38 + d02: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + d08: 3020 .2byte 0x3020 + d0a: 3778 .2byte 0x3778 + d0c: 0066 .2byte 0x66 + d0e: 5f5f 4e49 5f54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x5f + d14: 454c .2byte 0x454c + d16: 5341 .2byte 0x5341 + d18: 3354 .2byte 0x3354 + d1a: 5f32 .2byte 0x5f32 + d1c: 5954 .2byte 0x5954 + d1e: 4550 .2byte 0x4550 + d20: 5f5f 6c20 6e6f .byte 0x5f, 0x5f, 0x20, 0x6c, 0x6f, 0x6e + d26: 6e692067 .4byte 0x6e692067 + d2a: 0074 .2byte 0x74 + d2c: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f + d32: 736e6f63 bltu x28,x22,1470 + d36: 6574 .2byte 0x6574 + d38: 7078 .2byte 0x7078 + d3a: 2072 .2byte 0x2072 + d3c: 3032 .2byte 0x3032 + d3e: 3631 .2byte 0x3631 + d40: 3330 .2byte 0x3330 + d42: 004c .2byte 0x4c + d44: 5f5f 4c46 3154 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x31 + d4a: 3832 .2byte 0x3832 + d4c: 4d5f 5841 455f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x45 + d52: 5058 .2byte 0x5058 + d54: 5f5f 3120 3336 .byte 0x5f, 0x5f, 0x20, 0x31, 0x36, 0x33 + d5a: 3438 .2byte 0x3438 + d5c: 5f00 .2byte 0x5f00 + d5e: 555f 4e49 5f54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x5f + d64: 454c .2byte 0x454c + d66: 5341 .2byte 0x5341 + d68: 3654 .2byte 0x3654 + d6a: 5f34 .2byte 0x5f34 + d6c: 414d .2byte 0x414d + d6e: 5f58 .2byte 0x5f58 + d70: 205f 7830 6666 .byte 0x5f, 0x20, 0x30, 0x78, 0x66, 0x66 + d76: 6666 .2byte 0x6666 + d78: 6666 .2byte 0x6666 + d7a: 6666 .2byte 0x6666 + d7c: 6666 .2byte 0x6666 + d7e: 6666 .2byte 0x6666 + d80: 6666 .2byte 0x6666 + d82: 6666 .2byte 0x6666 + d84: 4c55 .2byte 0x4c55 + d86: 004c .2byte 0x4c + d88: 5f5f 4c46 5f54 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x5f + d8e: 4152 .2byte 0x4152 + d90: 4944 .2byte 0x4944 + d92: 5f58 .2byte 0x5f58 + d94: 205f 0032 5f5f .byte 0x5f, 0x20, 0x32, 0x00, 0x5f, 0x5f + d9a: 4c46 .2byte 0x4c46 + d9c: 3354 .2byte 0x3354 + d9e: 5832 .2byte 0x5832 + da0: 445f 4e45 524f .byte 0x5f, 0x44, 0x45, 0x4e, 0x4f, 0x52 + da6: 5f4d .2byte 0x5f4d + da8: 494d .2byte 0x494d + daa: 5f4e .2byte 0x5f4e + dac: 205f 2e34 3439 .byte 0x5f, 0x20, 0x34, 0x2e, 0x39, 0x34 + db2: 3630 .2byte 0x3630 + db4: 3635 .2byte 0x3635 + db6: 3534 .2byte 0x3534 + db8: 3438 .2byte 0x3438 + dba: 3231 .2byte 0x3231 + dbc: 3634 .2byte 0x3634 + dbe: 3435 .2byte 0x3435 + dc0: 3134 .2byte 0x3134 + dc2: 36353637 lui x12,0x36353 + dc6: 3738 .2byte 0x3738 + dc8: 3239 .2byte 0x3239 + dca: 3638 .2byte 0x3638 + dcc: 3238 .2byte 0x3238 + dce: 3132 .2byte 0x3132 + dd0: 65323733 .4byte 0x65323733 + dd4: 332d .2byte 0x332d + dd6: 3432 .2byte 0x3432 + dd8: 3346 .2byte 0x3346 + dda: 7832 .2byte 0x7832 + ddc: 5f00 .2byte 0x5f00 + dde: 635f 7070 725f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x72 + de4: 6e61 .2byte 0x6e61 + de6: 625f6567 .4byte 0x625f6567 + dea: 7361 .2byte 0x7361 + dec: 6465 .2byte 0x6465 + dee: 665f 726f 3220 .byte 0x5f, 0x66, 0x6f, 0x72, 0x20, 0x32 + df4: 3130 .2byte 0x3130 + df6: 3036 .2byte 0x3036 + df8: 5f004c33 .4byte 0x5f004c33 + dfc: 535f 5a49 4f45 .byte 0x5f, 0x53, 0x49, 0x5a, 0x45, 0x4f + e02: 5f46 .2byte 0x5f46 + e04: 4f4c .2byte 0x4f4c + e06: 474e .2byte 0x474e + e08: 445f 554f 4c42 .byte 0x5f, 0x44, 0x4f, 0x55, 0x42, 0x4c + e0e: 5f45 .2byte 0x5f45 + e10: 205f 3631 5f00 .byte 0x5f, 0x20, 0x31, 0x36, 0x00, 0x5f + e16: 445f 4c42 485f .byte 0x5f, 0x44, 0x42, 0x4c, 0x5f, 0x48 + e1c: 5341 .2byte 0x5341 + e1e: 515f 4955 5445 .byte 0x5f, 0x51, 0x55, 0x49, 0x45, 0x54 + e24: 4e5f 4e41 5f5f .byte 0x5f, 0x4e, 0x41, 0x4e, 0x5f, 0x5f + e2a: 3120 .2byte 0x3120 + e2c: 5f00 .2byte 0x5f00 + e2e: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 + e34: 5f58 .2byte 0x5f58 + e36: 5349 .2byte 0x5349 + e38: 495f 4345 365f .byte 0x5f, 0x49, 0x45, 0x43, 0x5f, 0x36 + e3e: 3530 .2byte 0x3530 + e40: 3935 .2byte 0x3935 + e42: 5f5f 3220 5f00 .byte 0x5f, 0x5f, 0x20, 0x32, 0x00, 0x5f + e48: 495f 544e 465f .byte 0x5f, 0x49, 0x4e, 0x54, 0x5f, 0x46 + e4e: 5341 .2byte 0x5341 + e50: 3854 .2byte 0x3854 + e52: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f + e58: 205f 6e69 0074 .byte 0x5f, 0x20, 0x69, 0x6e, 0x74, 0x00 + e5e: 5f5f 4c46 3654 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x36 + e64: 5f34 .2byte 0x5f34 + e66: 4148 .2byte 0x4148 + e68: 4e495f53 .4byte 0x4e495f53 + e6c: 4946 .2byte 0x4946 + e6e: 494e .2byte 0x494e + e70: 5954 .2byte 0x5954 + e72: 5f5f 3120 5700 .byte 0x5f, 0x5f, 0x20, 0x31, 0x00, 0x57 + e78: 4e49 .2byte 0x4e49 + e7a: 5f54 .2byte 0x5f54 + e7c: 494d .2byte 0x494d + e7e: 204e .2byte 0x204e + e80: 5f5f 4957 544e .byte 0x5f, 0x5f, 0x57, 0x49, 0x4e, 0x54 + e86: 4d5f 4e49 5f5f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x5f + e8c: 5f00 .2byte 0x5f00 + e8e: 4c5f 4244 5f4c .byte 0x5f, 0x4c, 0x44, 0x42, 0x4c, 0x5f + e94: 414d .2byte 0x414d + e96: 5f58 .2byte 0x5f58 + e98: 5845 .2byte 0x5845 + e9a: 5f50 .2byte 0x5f50 + e9c: 205f 3631 3833 .byte 0x5f, 0x20, 0x31, 0x36, 0x33, 0x38 + ea2: 0034 .2byte 0x34 + ea4: 5f5f 4347 5f43 .byte 0x5f, 0x5f, 0x47, 0x43, 0x43, 0x5f + eaa: 5441 .2byte 0x5441 + eac: 43494d4f .4byte 0x43494d4f + eb0: 495f 544e 4c5f .byte 0x5f, 0x49, 0x4e, 0x54, 0x5f, 0x4c + eb6: 5f4b434f .4byte 0x5f4b434f + eba: 5246 .2byte 0x5246 + ebc: 4545 .2byte 0x4545 + ebe: 3120 .2byte 0x3120 + ec0: 5f00 .2byte 0x5f00 + ec2: 635f 7070 625f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x62 + ec8: 6e69 .2byte 0x6e69 + eca: 7261 .2byte 0x7261 + ecc: 5f79 .2byte 0x5f79 + ece: 696c .2byte 0x696c + ed0: 6574 .2byte 0x6574 + ed2: 6172 .2byte 0x6172 + ed4: 736c .2byte 0x736c + ed6: 3220 .2byte 0x3220 + ed8: 3130 .2byte 0x3130 + eda: 4c343033 .4byte 0x4c343033 + ede: 5f00 .2byte 0x5f00 + ee0: 495f 544e 414d .byte 0x5f, 0x49, 0x4e, 0x54, 0x4d, 0x41 + ee6: 5f58 .2byte 0x5f58 + ee8: 414d .2byte 0x414d + eea: 5f58 .2byte 0x5f58 + eec: 205f 7830 6637 .byte 0x5f, 0x20, 0x30, 0x78, 0x37, 0x66 + ef2: 6666 .2byte 0x6666 + ef4: 6666 .2byte 0x6666 + ef6: 6666 .2byte 0x6666 + ef8: 6666 .2byte 0x6666 + efa: 6666 .2byte 0x6666 + efc: 6666 .2byte 0x6666 + efe: 6666 .2byte 0x6666 + f00: 4c4c .2byte 0x4c4c + f02: 5f00 .2byte 0x5f00 + f04: 495f 544e 4c5f .byte 0x5f, 0x49, 0x4e, 0x54, 0x5f, 0x4c + f0a: 4145 .2byte 0x4145 + f0c: 34365453 .4byte 0x34365453 + f10: 575f 4449 4854 .byte 0x5f, 0x57, 0x49, 0x44, 0x54, 0x48 + f16: 5f5f 3620 0034 .byte 0x5f, 0x5f, 0x20, 0x36, 0x34, 0x00 + f1c: 4e49 .2byte 0x4e49 + f1e: 3354 .2byte 0x3354 + f20: 5f32 .2byte 0x5f32 + f22: 29632843 .4byte 0x29632843 + f26: 5f20 .2byte 0x5f20 + f28: 495f 544e 3233 .byte 0x5f, 0x49, 0x4e, 0x54, 0x33, 0x32 + f2e: 435f 6328 0029 .byte 0x5f, 0x43, 0x28, 0x63, 0x29, 0x00 + f34: 5f5f 4c46 3654 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x36 + f3a: 5f34 .2byte 0x5f34 + f3c: 414d .2byte 0x414d + f3e: 5f58 .2byte 0x5f58 + f40: 3031 .2byte 0x3031 + f42: 455f 5058 5f5f .byte 0x5f, 0x45, 0x58, 0x50, 0x5f, 0x5f + f48: 3320 .2byte 0x3320 + f4a: 3830 .2byte 0x3830 + f4c: 5f00 .2byte 0x5f00 + f4e: 4f5f 4452 5245 .byte 0x5f, 0x4f, 0x52, 0x44, 0x45, 0x52 + f54: 4c5f 5449 4c54 .byte 0x5f, 0x4c, 0x49, 0x54, 0x54, 0x4c + f5a: 5f45 .2byte 0x5f45 + f5c: 4e45 .2byte 0x4e45 + f5e: 4944 .2byte 0x4944 + f60: 4e41 .2byte 0x4e41 + f62: 5f5f 3120 3332 .byte 0x5f, 0x5f, 0x20, 0x31, 0x32, 0x33 + f68: 0034 .2byte 0x34 + f6a: 5f5f 4953 455a .byte 0x5f, 0x5f, 0x53, 0x49, 0x5a, 0x45 + f70: 505f464f .4byte 0x505f464f + f74: 5254 .2byte 0x5254 + f76: 4944 .2byte 0x4944 + f78: 4646 .2byte 0x4646 + f7a: 545f 5f5f 3420 .byte 0x5f, 0x54, 0x5f, 0x5f, 0x20, 0x34 + f80: 5f00 .2byte 0x5f00 + f82: 635f 7070 755f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x75 + f88: 696e .2byte 0x696e + f8a: 65646f63 bltu x8,x22,15e8 + f8e: 6c5f 7469 7265 .byte 0x5f, 0x6c, 0x69, 0x74, 0x65, 0x72 + f94: 6c61 .2byte 0x6c61 + f96: 30322073 .4byte 0x30322073 + f9a: 3730 .2byte 0x3730 + f9c: 3031 .2byte 0x3031 + f9e: 004c .2byte 0x4c + fa0: 4955 .2byte 0x4955 + fa2: 544e .2byte 0x544e + fa4: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 + faa: 4d5f3233 .4byte 0x4d5f3233 + fae: 5841 .2byte 0x5841 + fb0: 4900 .2byte 0x4900 + fb2: 544e .2byte 0x544e + fb4: 465f 5341 3654 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x36 + fba: 5f34 .2byte 0x5f34 + fbc: 494d .2byte 0x494d + fbe: 004e .2byte 0x4e + fc0: 5450 .2byte 0x5450 + fc2: 4452 .2byte 0x4452 + fc4: 4649 .2byte 0x4649 + fc6: 5f46 .2byte 0x5f46 + fc8: 494d .2byte 0x494d + fca: 204e .2byte 0x204e + fcc: 2d28 .2byte 0x2d28 + fce: 5450 .2byte 0x5450 + fd0: 4452 .2byte 0x4452 + fd2: 4649 .2byte 0x4649 + fd4: 5f46 .2byte 0x5f46 + fd6: 414d .2byte 0x414d + fd8: 2058 .2byte 0x2058 + fda: 202d .2byte 0x202d + fdc: 2931 .2byte 0x2931 + fde: 5500 .2byte 0x5500 + fe0: 4e49 .2byte 0x4e49 + fe2: 5f54 .2byte 0x5f54 + fe4: 4146 .2byte 0x4146 + fe6: 34365453 .4byte 0x34365453 + fea: 4d5f 5841 5f20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x5f + ff0: 555f 4e49 5f54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x5f + ff6: 4146 .2byte 0x4146 + ff8: 34365453 .4byte 0x34365453 + ffc: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 1002: 5000 .2byte 0x5000 + 1004: 5254 .2byte 0x5254 + 1006: 4944 .2byte 0x4944 + 1008: 4646 .2byte 0x4646 + 100a: 4d5f 4e49 5f00 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x00, 0x5f + 1010: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 + 1016: 5f58 .2byte 0x5f58 + 1018: 4944 .2byte 0x4944 + 101a: 205f5f47 .4byte 0x205f5f47 + 101e: 5f003333 .4byte 0x5f003333 + 1022: 555f 4e49 3354 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x33 + 1028: 5f32 .2byte 0x5f32 + 102a: 29632843 .4byte 0x29632843 + 102e: 6320 .2byte 0x6320 + 1030: 2320 .2byte 0x2320 + 1032: 4c552023 sw x5,1216(x10) # 313134c0 <__BSS_END__+0x31300d8c> + 1036: 4900 .2byte 0x4900 + 1038: 544e .2byte 0x544e + 103a: 414d .2byte 0x414d + 103c: 5f58 .2byte 0x5f58 + 103e: 494d .2byte 0x494d + 1040: 004e .2byte 0x4e + 1042: 4955 .2byte 0x4955 + 1044: 544e .2byte 0x544e + 1046: 465f 5341 3854 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x38 + 104c: 4d5f 5841 6100 .byte 0x5f, 0x4d, 0x41, 0x58, 0x00, 0x61 + 1052: 6c6c .2byte 0x6c6c + 1054: 7562636f jal x6,277aa <__BSS_END__+0x15076> + 1058: 0066 .2byte 0x66 + 105a: 5f5f 5847 5f58 .byte 0x5f, 0x5f, 0x47, 0x58, 0x58, 0x5f + 1060: 4b414557 .4byte 0x4b414557 + 1064: 5f5f 3120 5f00 .byte 0x5f, 0x5f, 0x20, 0x31, 0x00, 0x5f + 106a: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 + 1070: 5f58 .2byte 0x5f58 + 1072: 494d .2byte 0x494d + 1074: 5f4e .2byte 0x5f4e + 1076: 3031 .2byte 0x3031 + 1078: 455f 5058 5f5f .byte 0x5f, 0x45, 0x58, 0x50, 0x5f, 0x5f + 107e: 2820 .2byte 0x2820 + 1080: 342d .2byte 0x342d + 1082: 3339 .2byte 0x3339 + 1084: 2931 .2byte 0x2931 + 1086: 5f00 .2byte 0x5f00 + 1088: 445f 4c42 4e5f .byte 0x5f, 0x44, 0x42, 0x4c, 0x5f, 0x4e + 108e: 5f4d524f .4byte 0x5f4d524f + 1092: 414d .2byte 0x414d + 1094: 5f58 .2byte 0x5f58 + 1096: 205f 6f64 6275 .byte 0x5f, 0x20, 0x64, 0x6f, 0x75, 0x62 + 109c: 656c .2byte 0x656c + 109e: 3128 .2byte 0x3128 + 10a0: 372e .2byte 0x372e + 10a2: 3739 .2byte 0x3739 + 10a4: 3936 .2byte 0x3936 + 10a6: 34333133 .4byte 0x34333133 + 10aa: 3638 .2byte 0x3638 + 10ac: 3332 .2byte 0x3332 + 10ae: 3531 .2byte 0x3531 + 10b0: 31383037 lui x0,0x31383 + 10b4: 3534 .2byte 0x3534 + 10b6: 3732 .2byte 0x3732 + 10b8: 3234 .2byte 0x3234 + 10ba: 31333733 .4byte 0x31333733 + 10be: 33343037 lui x0,0x33343 + 10c2: 3735 .2byte 0x3735 + 10c4: 2b65 .2byte 0x2b65 + 10c6: 4c383033 .4byte 0x4c383033 + 10ca: 0029 .2byte 0x29 + 10cc: 5f5f 4953 5f47 .byte 0x5f, 0x5f, 0x53, 0x49, 0x47, 0x5f + 10d2: 5441 .2byte 0x5441 + 10d4: 43494d4f .4byte 0x43494d4f + 10d8: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 10de: 3020 .2byte 0x3020 + 10e0: 3778 .2byte 0x3778 + 10e2: 6666 .2byte 0x6666 + 10e4: 6666 .2byte 0x6666 + 10e6: 6666 .2byte 0x6666 + 10e8: 0066 .2byte 0x66 + 10ea: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 + 10f0: 465f 5341 3854 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x38 + 10f6: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 10fc: 3020 .2byte 0x3020 + 10fe: 6678 .2byte 0x6678 + 1100: 6666 .2byte 0x6666 + 1102: 6666 .2byte 0x6666 + 1104: 6666 .2byte 0x6666 + 1106: 5566 .2byte 0x5566 + 1108: 5500 .2byte 0x5500 + 110a: 4e49 .2byte 0x4e49 + 110c: 3654 .2byte 0x3654 + 110e: 5f34 .2byte 0x5f34 + 1110: 5f5f0043 .4byte 0x5f5f0043 + 1114: 4c46 .2byte 0x4c46 + 1116: 3154 .2byte 0x3154 + 1118: 3832 .2byte 0x3832 + 111a: 4d5f 5841 315f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x31 + 1120: 5f30 .2byte 0x5f30 + 1122: 5845 .2byte 0x5845 + 1124: 5f50 .2byte 0x5f50 + 1126: 205f 3934 3233 .byte 0x5f, 0x20, 0x34, 0x39, 0x33, 0x32 + 112c: 5f00 .2byte 0x5f00 + 112e: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 + 1134: 4d5f 4e49 315f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x31 + 113a: 5f30 .2byte 0x5f30 + 113c: 5845 .2byte 0x5845 + 113e: 5f50 .2byte 0x5f50 + 1140: 205f 2d28 3033 .byte 0x5f, 0x20, 0x28, 0x2d, 0x33, 0x30 + 1146: 55002937 lui x18,0x55002 + 114a: 4e49 .2byte 0x4e49 + 114c: 3854 .2byte 0x3854 + 114e: 435f 6328 2029 .byte 0x5f, 0x43, 0x28, 0x63, 0x29, 0x20 + 1154: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 + 115a: 5f38 .2byte 0x5f38 + 115c: 29632843 .4byte 0x29632843 + 1160: 5f00 .2byte 0x5f00 + 1162: 495f 544e 465f .byte 0x5f, 0x49, 0x4e, 0x54, 0x5f, 0x46 + 1168: 5341 .2byte 0x5341 + 116a: 3154 .2byte 0x3154 + 116c: 5f36 .2byte 0x5f36 + 116e: 5954 .2byte 0x5954 + 1170: 4550 .2byte 0x4550 + 1172: 5f5f 6920 746e .byte 0x5f, 0x5f, 0x20, 0x69, 0x6e, 0x74 + 1178: 5f00 .2byte 0x5f00 + 117a: 465f 544c 3231 .byte 0x5f, 0x46, 0x4c, 0x54, 0x31, 0x32 + 1180: 5f38 .2byte 0x5f38 + 1182: 4944 .2byte 0x4944 + 1184: 205f5f47 .4byte 0x205f5f47 + 1188: 5f003333 .4byte 0x5f003333 + 118c: 555f 4e49 3154 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x31 + 1192: 5f36 .2byte 0x5f36 + 1194: 5954 .2byte 0x5954 + 1196: 4550 .2byte 0x4550 + 1198: 5f5f 7320 6f68 .byte 0x5f, 0x5f, 0x20, 0x73, 0x68, 0x6f + 119e: 7472 .2byte 0x7472 + 11a0: 7520 .2byte 0x7520 + 11a2: 736e .2byte 0x736e + 11a4: 6769 .2byte 0x6769 + 11a6: 656e .2byte 0x656e + 11a8: 2064 .2byte 0x2064 + 11aa: 6e69 .2byte 0x6e69 + 11ac: 0074 .2byte 0x74 + 11ae: 5f5f 444c 4c42 .byte 0x5f, 0x5f, 0x4c, 0x44, 0x42, 0x4c + 11b4: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 11ba: 3120 .2byte 0x3120 + 11bc: 312e .2byte 0x312e + 11be: 3938 .2byte 0x3938 + 11c0: 34313337 lui x6,0x34313 + 11c4: 3539 .2byte 0x3539 + 11c6: 32373533 .4byte 0x32373533 + 11ca: 36373133 .4byte 0x36373133 + 11ce: 3035 .2byte 0x3035 + 11d0: 3538 .2byte 0x3538 + 11d2: 33393537 lui x10,0x33393 + 11d6: 3632 .2byte 0x3632 + 11d8: 3236 .2byte 0x3236 + 11da: 3038 .2byte 0x3038 + 11dc: 3730 .2byte 0x3730 + 11de: 3230 .2byte 0x3230 + 11e0: 2b65 .2byte 0x2b65 + 11e2: 3934 .2byte 0x3934 + 11e4: 004c3233 sltu x4,x24,x4 + 11e8: 5f5f 4357 4148 .byte 0x5f, 0x5f, 0x57, 0x43, 0x48, 0x41 + 11ee: 5f52 .2byte 0x5f52 + 11f0: 54444957 .4byte 0x54444957 + 11f4: 5f48 .2byte 0x5f48 + 11f6: 205f 3233 5f00 .byte 0x5f, 0x20, 0x33, 0x32, 0x00, 0x5f + 11fc: 475f 554e 5f43 .byte 0x5f, 0x47, 0x4e, 0x55, 0x43, 0x5f + 1202: 43445453 .4byte 0x43445453 + 1206: 495f 4c4e 4e49 .byte 0x5f, 0x49, 0x4e, 0x4c, 0x49, 0x4e + 120c: 5f45 .2byte 0x5f45 + 120e: 205f 0031 4e49 .byte 0x5f, 0x20, 0x31, 0x00, 0x49, 0x4e + 1214: 4d54 .2byte 0x4d54 + 1216: 5841 .2byte 0x5841 + 1218: 435f 6328 2029 .byte 0x5f, 0x43, 0x28, 0x63, 0x29, 0x20 + 121e: 5f5f 4e49 4d54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x4d + 1224: 5841 .2byte 0x5841 + 1226: 435f 6328 0029 .byte 0x5f, 0x43, 0x28, 0x63, 0x29, 0x00 + 122c: 5f5f 4f4c 474e .byte 0x5f, 0x5f, 0x4c, 0x4f, 0x4e, 0x47 + 1232: 4c5f 4e4f 5f47 .byte 0x5f, 0x4c, 0x4f, 0x4e, 0x47, 0x5f + 1238: 414d .2byte 0x414d + 123a: 5f58 .2byte 0x5f58 + 123c: 205f 7830 6637 .byte 0x5f, 0x20, 0x30, 0x78, 0x37, 0x66 + 1242: 6666 .2byte 0x6666 + 1244: 6666 .2byte 0x6666 + 1246: 6666 .2byte 0x6666 + 1248: 6666 .2byte 0x6666 + 124a: 6666 .2byte 0x6666 + 124c: 6666 .2byte 0x6666 + 124e: 6666 .2byte 0x6666 + 1250: 4c4c .2byte 0x4c4c + 1252: 5f00 .2byte 0x5f00 + 1254: 495f 544e 3436 .byte 0x5f, 0x49, 0x4e, 0x54, 0x36, 0x34 + 125a: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f + 1260: 205f 6f6c 676e .byte 0x5f, 0x20, 0x6c, 0x6f, 0x6e, 0x67 + 1266: 6c20 .2byte 0x6c20 + 1268: 20676e6f jal x28,7746e <__BSS_END__+0x64d3a> + 126c: 6e69 .2byte 0x6e69 + 126e: 0074 .2byte 0x74 + 1270: 5f5f 4c46 5f54 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x5f + 1276: 414d .2byte 0x414d + 1278: 5f58 .2byte 0x5f58 + 127a: 3031 .2byte 0x3031 + 127c: 455f 5058 5f5f .byte 0x5f, 0x45, 0x58, 0x50, 0x5f, 0x5f + 1282: 3320 .2byte 0x3320 + 1284: 0038 .2byte 0x38 + 1286: 5f5f 444c 4c42 .byte 0x5f, 0x5f, 0x4c, 0x44, 0x42, 0x4c + 128c: 455f 5350 4c49 .byte 0x5f, 0x45, 0x50, 0x53, 0x49, 0x4c + 1292: 5f5f4e4f .4byte 0x5f5f4e4f + 1296: 3120 .2byte 0x3120 + 1298: 392e .2byte 0x392e + 129a: 3532 .2byte 0x3532 + 129c: 3239 .2byte 0x3239 + 129e: 3939 .2byte 0x3939 + 12a0: 3434 .2byte 0x3434 + 12a2: 32373833 .4byte 0x32373833 + 12a6: 35383533 .4byte 0x35383533 + 12aa: 35353033 .4byte 0x35353033 + 12ae: 3739 .2byte 0x3739 + 12b0: 32343937 lui x18,0x32343 + 12b4: 3835 .2byte 0x3835 + 12b6: 3934 .2byte 0x3934 + 12b8: 3732 .2byte 0x3732 + 12ba: 2d653233 .4byte 0x2d653233 + 12be: 004c3433 sltu x8,x24,x4 + 12c2: 5f5f 4c46 3354 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x33 + 12c8: 5832 .2byte 0x5832 + 12ca: 455f 5350 4c49 .byte 0x5f, 0x45, 0x50, 0x53, 0x49, 0x4c + 12d0: 5f5f4e4f .4byte 0x5f5f4e4f + 12d4: 3220 .2byte 0x3220 + 12d6: 322e .2byte 0x322e + 12d8: 3032 .2byte 0x3032 + 12da: 3434 .2byte 0x3434 + 12dc: 3036 .2byte 0x3036 + 12de: 3934 .2byte 0x3934 + 12e0: 3532 .2byte 0x3532 + 12e2: 3330 .2byte 0x3330 + 12e4: 3331 .2byte 0x3331 + 12e6: 3830 .2byte 0x3830 + 12e8: 3830 .2byte 0x3830 + 12ea: 3734 .2byte 0x3734 + 12ec: 3632 .2byte 0x3632 + 12ee: 36333333 .4byte 0x36333333 + 12f2: 3831 .2byte 0x3831 + 12f4: 3631 .2byte 0x3631 + 12f6: 3034 .2byte 0x3034 + 12f8: 3236 .2byte 0x3236 + 12fa: 2d65 .2byte 0x2d65 + 12fc: 3631 .2byte 0x3631 + 12fe: 3346 .2byte 0x3346 + 1300: 7832 .2byte 0x7832 + 1302: 5f00 .2byte 0x5f00 + 1304: 4e5f 5f4f 4e49 .byte 0x5f, 0x4e, 0x4f, 0x5f, 0x49, 0x4e + 130a: 494c .2byte 0x494c + 130c: 454e .2byte 0x454e + 130e: 5f5f 3120 5f00 .byte 0x5f, 0x5f, 0x20, 0x31, 0x00, 0x5f + 1314: 725f 7369 7663 .byte 0x5f, 0x72, 0x69, 0x73, 0x63, 0x76 + 131a: 785f 656c 206e .byte 0x5f, 0x78, 0x6c, 0x65, 0x6e, 0x20 + 1320: 5f003233 .4byte 0x5f003233 + 1324: 635f 7070 6e5f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x6e + 132a: 7365 .2byte 0x7365 + 132c: 6574 .2byte 0x6574 + 132e: 5f64 .2byte 0x5f64 + 1330: 616e .2byte 0x616e + 1332: 656d .2byte 0x656d + 1334: 63617073 .4byte 0x63617073 + 1338: 5f65 .2byte 0x5f65 + 133a: 6564 .2byte 0x6564 + 133c: 6966 .2byte 0x6966 + 133e: 696e .2byte 0x696e + 1340: 6974 .2byte 0x6974 + 1342: 20736e6f jal x28,37d48 <__BSS_END__+0x25614> + 1346: 3032 .2byte 0x3032 + 1348: 3431 .2byte 0x3431 + 134a: 3131 .2byte 0x3131 + 134c: 004c .2byte 0x4c + 134e: 5f5f 4c46 5f54 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x5f + 1354: 414d .2byte 0x414d + 1356: 544e .2byte 0x544e + 1358: 445f 4749 5f5f .byte 0x5f, 0x44, 0x49, 0x47, 0x5f, 0x5f + 135e: 3220 .2byte 0x3220 + 1360: 0034 .2byte 0x34 + 1362: 5f5f 4c46 3654 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x36 + 1368: 5f34 .2byte 0x5f34 + 136a: 4544 .2byte 0x4544 + 136c: 414d4943 .4byte 0x414d4943 + 1370: 5f4c .2byte 0x5f4c + 1372: 4944 .2byte 0x4944 + 1374: 205f5f47 .4byte 0x205f5f47 + 1378: 3731 .2byte 0x3731 + 137a: 5f00 .2byte 0x5f00 + 137c: 525f 4745 5349 .byte 0x5f, 0x52, 0x45, 0x47, 0x49, 0x53 + 1382: 4554 .2byte 0x4554 + 1384: 5f52 .2byte 0x5f52 + 1386: 5250 .2byte 0x5250 + 1388: 4645 .2byte 0x4645 + 138a: 5849 .2byte 0x5849 + 138c: 5f5f 0020 5f5f .byte 0x5f, 0x5f, 0x20, 0x00, 0x5f, 0x5f + 1392: 4c46 .2byte 0x4c46 + 1394: 3354 .2byte 0x3354 + 1396: 5f32 .2byte 0x5f32 + 1398: 494d .2byte 0x494d + 139a: 5f4e .2byte 0x5f4e + 139c: 5845 .2byte 0x5845 + 139e: 5f50 .2byte 0x5f50 + 13a0: 205f 2d28 3231 .byte 0x5f, 0x20, 0x28, 0x2d, 0x31, 0x32 + 13a6: 2935 .2byte 0x2935 + 13a8: 5700 .2byte 0x5700 + 13aa: 4e49 .2byte 0x4e49 + 13ac: 5f54 .2byte 0x5f54 + 13ae: 414d .2byte 0x414d + 13b0: 0058 .2byte 0x58 + 13b2: 5f5f 4c46 3654 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x36 + 13b8: 5834 .2byte 0x5834 + 13ba: 4e5f 524f 5f4d .byte 0x5f, 0x4e, 0x4f, 0x52, 0x4d, 0x5f + 13c0: 414d .2byte 0x414d + 13c2: 5f58 .2byte 0x5f58 + 13c4: 205f 2e31 3831 .byte 0x5f, 0x20, 0x31, 0x2e, 0x31, 0x38 + 13ca: 3739 .2byte 0x3739 + 13cc: 39343133 .4byte 0x39343133 + 13d0: 3335 .2byte 0x3335 + 13d2: 3735 .2byte 0x3735 + 13d4: 3332 .2byte 0x3332 + 13d6: 3731 .2byte 0x3731 + 13d8: 3536 .2byte 0x3536 + 13da: 3830 .2byte 0x3830 + 13dc: 3735 .2byte 0x3735 + 13de: 3935 .2byte 0x3935 + 13e0: 36363233 .4byte 0x36363233 + 13e4: 3832 .2byte 0x3832 + 13e6: 3030 .2byte 0x3030 + 13e8: 65323037 lui x0,0x65323 + 13ec: 3339342b .4byte 0x3339342b + 13f0: 4632 .2byte 0x4632 + 13f2: 3436 .2byte 0x3436 + 13f4: 0078 .2byte 0x78 + 13f6: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 + 13fc: 465f 5341 3154 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x31 + 1402: 5f36 .2byte 0x5f36 + 1404: 414d .2byte 0x414d + 1406: 5f58 .2byte 0x5f58 + 1408: 205f 7830 6666 .byte 0x5f, 0x20, 0x30, 0x78, 0x66, 0x66 + 140e: 6666 .2byte 0x6666 + 1410: 6666 .2byte 0x6666 + 1412: 6666 .2byte 0x6666 + 1414: 0055 .2byte 0x55 + 1416: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 + 141c: 465f 5341 3154 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x31 + 1422: 5f36 .2byte 0x5f36 + 1424: 5954 .2byte 0x5954 + 1426: 4550 .2byte 0x4550 + 1428: 5f5f 7520 736e .byte 0x5f, 0x5f, 0x20, 0x75, 0x6e, 0x73 + 142e: 6769 .2byte 0x6769 + 1430: 656e .2byte 0x656e + 1432: 2064 .2byte 0x2064 + 1434: 6e69 .2byte 0x6e69 + 1436: 0074 .2byte 0x74 + 1438: 5f5f 4c46 5f54 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x5f + 143e: 414d .2byte 0x414d + 1440: 5f58 .2byte 0x5f58 + 1442: 205f 2e33 3034 .byte 0x5f, 0x20, 0x33, 0x2e, 0x34, 0x30 + 1448: 3832 .2byte 0x3832 + 144a: 3332 .2byte 0x3332 + 144c: 3634 .2byte 0x3634 + 144e: 3336 .2byte 0x3336 + 1450: 3538 .2byte 0x3538 + 1452: 3832 .2byte 0x3832 + 1454: 3538 .2byte 0x3538 + 1456: 3839 .2byte 0x3839 + 1458: 3131 .2byte 0x3131 + 145a: 31343037 lui x0,0x31343 + 145e: 3338 .2byte 0x3338 + 1460: 3834 .2byte 0x3834 + 1462: 3534 .2byte 0x3534 + 1464: 3631 .2byte 0x3631 + 1466: 3239 .2byte 0x3239 + 1468: 6535 .2byte 0x6535 + 146a: 4638332b .4byte 0x4638332b + 146e: 5f00 .2byte 0x5f00 + 1470: 445f 4c42 4d5f .byte 0x5f, 0x44, 0x42, 0x4c, 0x5f, 0x4d + 1476: 4e49 .2byte 0x4e49 + 1478: 315f 5f30 5845 .byte 0x5f, 0x31, 0x30, 0x5f, 0x45, 0x58 + 147e: 5f50 .2byte 0x5f50 + 1480: 205f 2d28 3033 .byte 0x5f, 0x20, 0x28, 0x2d, 0x33, 0x30 + 1486: 49002937 lui x18,0x49002 + 148a: 544e .2byte 0x544e + 148c: 465f 5341 3354 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x33 + 1492: 5f32 .2byte 0x5f32 + 1494: 414d .2byte 0x414d + 1496: 2058 .2byte 0x2058 + 1498: 5f5f 4e49 5f54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x5f + 149e: 4146 .2byte 0x4146 + 14a0: 32335453 .4byte 0x32335453 + 14a4: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 14aa: 5f00 .2byte 0x5f00 + 14ac: 465f 544c 3231 .byte 0x5f, 0x46, 0x4c, 0x54, 0x31, 0x32 + 14b2: 5f38 .2byte 0x5f38 + 14b4: 4148 .2byte 0x4148 + 14b6: 4e495f53 .4byte 0x4e495f53 + 14ba: 4946 .2byte 0x4946 + 14bc: 494e .2byte 0x494e + 14be: 5954 .2byte 0x5954 + 14c0: 5f5f 3120 5500 .byte 0x5f, 0x5f, 0x20, 0x31, 0x00, 0x55 + 14c6: 4e49 .2byte 0x4e49 + 14c8: 5f54 .2byte 0x5f54 + 14ca: 454c .2byte 0x454c + 14cc: 5341 .2byte 0x5341 + 14ce: 3654 .2byte 0x3654 + 14d0: 5f34 .2byte 0x5f34 + 14d2: 414d .2byte 0x414d + 14d4: 0058 .2byte 0x58 + 14d6: 5f5f 4c46 3354 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x33 + 14dc: 5f32 .2byte 0x5f32 + 14de: 4944 .2byte 0x4944 + 14e0: 205f5f47 .4byte 0x205f5f47 + 14e4: 0036 .2byte 0x36 + 14e6: 475f 4343 535f .byte 0x5f, 0x47, 0x43, 0x43, 0x5f, 0x53 + 14ec: 4454 .2byte 0x4454 + 14ee: 4e49 .2byte 0x4e49 + 14f0: 5f54 .2byte 0x5f54 + 14f2: 2048 .2byte 0x2048 + 14f4: 5f00 .2byte 0x5f00 + 14f6: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 + 14fc: 485f 5341 445f .byte 0x5f, 0x48, 0x41, 0x53, 0x5f, 0x44 + 1502: 4e45 .2byte 0x4e45 + 1504: 5f4d524f .4byte 0x5f4d524f + 1508: 205f 0031 5f5f .byte 0x5f, 0x20, 0x31, 0x00, 0x5f, 0x5f + 150e: 5f707063 bgeu x0,x23,1aee + 1512: 6176 .2byte 0x6176 + 1514: 6972 .2byte 0x6972 + 1516: 6261 .2byte 0x6261 + 1518: 656c .2byte 0x656c + 151a: 745f 6d65 6c70 .byte 0x5f, 0x74, 0x65, 0x6d, 0x70, 0x6c + 1520: 7461 .2byte 0x7461 + 1522: 7365 .2byte 0x7365 + 1524: 3220 .2byte 0x3220 + 1526: 3130 .2byte 0x3130 + 1528: 4c343033 .4byte 0x4c343033 + 152c: 5f00 .2byte 0x5f00 + 152e: 465f 544c 455f .byte 0x5f, 0x46, 0x4c, 0x54, 0x5f, 0x45 + 1534: 4156 .2byte 0x4156 + 1536: 5f4c .2byte 0x5f4c + 1538: 454d .2byte 0x454d + 153a: 4854 .2byte 0x4854 + 153c: 5f5f444f .4byte 0x5f5f444f + 1540: 3020 .2byte 0x3020 + 1542: 5f00 .2byte 0x5f00 + 1544: 635f 7070 725f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x72 + 154a: 6176 .2byte 0x6176 + 154c: 756c .2byte 0x756c + 154e: 5f65 .2byte 0x5f65 + 1550: 6572 .2byte 0x6572 + 1552: 6566 .2byte 0x6566 + 1554: 6572 .2byte 0x6572 + 1556: 636e .2byte 0x636e + 1558: 2065 .2byte 0x2065 + 155a: 3032 .2byte 0x3032 + 155c: 3630 .2byte 0x3630 + 155e: 3031 .2byte 0x3031 + 1560: 004c .2byte 0x4c + 1562: 5f5f 4c46 3354 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x33 + 1568: 5832 .2byte 0x5832 + 156a: 485f 5341 445f .byte 0x5f, 0x48, 0x41, 0x53, 0x5f, 0x44 + 1570: 4e45 .2byte 0x4e45 + 1572: 5f4d524f .4byte 0x5f4d524f + 1576: 205f 0031 5f5f .byte 0x5f, 0x20, 0x31, 0x00, 0x5f, 0x5f + 157c: 5f707063 bgeu x0,x23,1b5c + 1580: 7865 .2byte 0x7865 + 1582: 74706563 bltu x0,x7,1ccc + 1586: 6f69 .2byte 0x6f69 + 1588: 736e .2byte 0x736e + 158a: 3120 .2byte 0x3120 + 158c: 3939 .2byte 0x3939 + 158e: 4c313137 lui x2,0x4c313 + 1592: 5f00 .2byte 0x5f00 + 1594: 495f 544e 4c5f .byte 0x5f, 0x49, 0x4e, 0x54, 0x5f, 0x4c + 159a: 4145 .2byte 0x4145 + 159c: 34365453 .4byte 0x34365453 + 15a0: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 15a6: 3020 .2byte 0x3020 + 15a8: 3778 .2byte 0x3778 + 15aa: 6666 .2byte 0x6666 + 15ac: 6666 .2byte 0x6666 + 15ae: 6666 .2byte 0x6666 + 15b0: 6666 .2byte 0x6666 + 15b2: 6666 .2byte 0x6666 + 15b4: 6666 .2byte 0x6666 + 15b6: 6666 .2byte 0x6666 + 15b8: 4c66 .2byte 0x4c66 + 15ba: 004c .2byte 0x4c + 15bc: 5f5f 4347 5f43 .byte 0x5f, 0x5f, 0x47, 0x43, 0x43, 0x5f + 15c2: 5441 .2byte 0x5441 + 15c4: 43494d4f .4byte 0x43494d4f + 15c8: 575f 4843 5241 .byte 0x5f, 0x57, 0x43, 0x48, 0x41, 0x52 + 15ce: 545f 4c5f 434f .byte 0x5f, 0x54, 0x5f, 0x4c, 0x4f, 0x43 + 15d4: 52465f4b .4byte 0x52465f4b + 15d8: 4545 .2byte 0x4545 + 15da: 3120 .2byte 0x3120 + 15dc: 5f00 .2byte 0x5f00 + 15de: 465f 544c 3231 .byte 0x5f, 0x46, 0x4c, 0x54, 0x31, 0x32 + 15e4: 5f38 .2byte 0x5f38 + 15e6: 494d .2byte 0x494d + 15e8: 5f4e .2byte 0x5f4e + 15ea: 205f 2e33 3633 .byte 0x5f, 0x20, 0x33, 0x2e, 0x33, 0x36 + 15f0: 3132 .2byte 0x3132 + 15f2: 3330 .2byte 0x3330 + 15f4: 3431 .2byte 0x3431 + 15f6: 32313133 .4byte 0x32313133 + 15fa: 3930 .2byte 0x3930 + 15fc: 36303533 .4byte 0x36303533 + 1600: 3632 .2byte 0x3632 + 1602: 3632 .2byte 0x3632 + 1604: 31383737 lui x14,0x31383 + 1608: 31323337 lui x6,0x31323 + 160c: 36323537 lui x10,0x36323 + 1610: 6530 .2byte 0x6530 + 1612: 342d .2byte 0x342d + 1614: 3339 .2byte 0x3339 + 1616: 4632 .2byte 0x4632 + 1618: 3231 .2byte 0x3231 + 161a: 0038 .2byte 0x38 + 161c: 5f5f 6972 6373 .byte 0x5f, 0x5f, 0x72, 0x69, 0x73, 0x63 + 1622: 5f76 .2byte 0x5f76 + 1624: 7261 .2byte 0x7261 + 1626: 745f6863 bltu x30,x5,1d76 + 162a: 7365 .2byte 0x7365 + 162c: 2074 .2byte 0x2074 + 162e: 0031 .2byte 0x31 + 1630: 41484357 .4byte 0x41484357 + 1634: 5f52 .2byte 0x5f52 + 1636: 494d .2byte 0x494d + 1638: 004e .2byte 0x4e + 163a: 4e49 .2byte 0x4e49 + 163c: 5f54 .2byte 0x5f54 + 163e: 454c .2byte 0x454c + 1640: 5341 .2byte 0x5341 + 1642: 3654 .2byte 0x3654 + 1644: 5f34 .2byte 0x5f34 + 1646: 494d .2byte 0x494d + 1648: 004e .2byte 0x4e + 164a: 5f5f 4953 455a .byte 0x5f, 0x5f, 0x53, 0x49, 0x5a, 0x45 + 1650: 495f464f .4byte 0x495f464f + 1654: 544e .2byte 0x544e + 1656: 5f5f 3420 5f00 .byte 0x5f, 0x5f, 0x20, 0x34, 0x00, 0x5f + 165c: 495f 544e 4c5f .byte 0x5f, 0x49, 0x4e, 0x54, 0x5f, 0x4c + 1662: 4145 .2byte 0x4145 + 1664: 5f385453 .4byte 0x5f385453 + 1668: 54444957 .4byte 0x54444957 + 166c: 5f48 .2byte 0x5f48 + 166e: 205f 0038 5f5f .byte 0x5f, 0x20, 0x38, 0x00, 0x5f, 0x5f + 1674: 4955 .2byte 0x4955 + 1676: 544e .2byte 0x544e + 1678: 5f38 .2byte 0x5f38 + 167a: 414d .2byte 0x414d + 167c: 5f58 .2byte 0x5f58 + 167e: 205f 7830 6666 .byte 0x5f, 0x20, 0x30, 0x78, 0x66, 0x66 + 1684: 5f00 .2byte 0x5f00 + 1686: 555f 4e49 3154 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x31 + 168c: 5f36 .2byte 0x5f36 + 168e: 414d .2byte 0x414d + 1690: 5f58 .2byte 0x5f58 + 1692: 205f 7830 6666 .byte 0x5f, 0x20, 0x30, 0x78, 0x66, 0x66 + 1698: 6666 .2byte 0x6666 + 169a: 4900 .2byte 0x4900 + 169c: 544e .2byte 0x544e + 169e: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 + 16a4: 5f38 .2byte 0x5f38 + 16a6: 414d .2byte 0x414d + 16a8: 2058 .2byte 0x2058 + 16aa: 5f5f 4e49 5f54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x5f + 16b0: 454c .2byte 0x454c + 16b2: 5341 .2byte 0x5341 + 16b4: 3854 .2byte 0x3854 + 16b6: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 16bc: 5300 .2byte 0x5300 + 16be: 5a49 .2byte 0x5a49 + 16c0: 5f45 .2byte 0x5f45 + 16c2: 414d .2byte 0x414d + 16c4: 2058 .2byte 0x2058 + 16c6: 5f5f 4953 455a .byte 0x5f, 0x5f, 0x53, 0x49, 0x5a, 0x45 + 16cc: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 16d2: 5f00 .2byte 0x5f00 + 16d4: 495f 544e 414d .byte 0x5f, 0x49, 0x4e, 0x54, 0x4d, 0x41 + 16da: 5f58 .2byte 0x5f58 + 16dc: 54444957 .4byte 0x54444957 + 16e0: 5f48 .2byte 0x5f48 + 16e2: 205f 3436 5f00 .byte 0x5f, 0x20, 0x36, 0x34, 0x00, 0x5f + 16e8: 475f 4343 495f .byte 0x5f, 0x47, 0x43, 0x43, 0x5f, 0x49 + 16ee: 4345 .2byte 0x4345 + 16f0: 355f 3935 3020 .byte 0x5f, 0x35, 0x35, 0x39, 0x20, 0x30 + 16f6: 5f00 .2byte 0x5f00 + 16f8: 445f 4c42 495f .byte 0x5f, 0x44, 0x42, 0x4c, 0x5f, 0x49 + 16fe: 45495f53 .4byte 0x45495f53 + 1702: 30365f43 .4byte 0x30365f43 + 1706: 3535 .2byte 0x3535 + 1708: 5f39 .2byte 0x5f39 + 170a: 205f 0032 5f5f .byte 0x5f, 0x20, 0x32, 0x00, 0x5f, 0x5f + 1710: 4e49 .2byte 0x4e49 + 1712: 5f54 .2byte 0x5f54 + 1714: 454c .2byte 0x454c + 1716: 5341 .2byte 0x5341 + 1718: 3154 .2byte 0x3154 + 171a: 5f36 .2byte 0x5f36 + 171c: 5954 .2byte 0x5954 + 171e: 4550 .2byte 0x4550 + 1720: 5f5f 7320 6f68 .byte 0x5f, 0x5f, 0x20, 0x73, 0x68, 0x6f + 1726: 7472 .2byte 0x7472 + 1728: 6920 .2byte 0x6920 + 172a: 746e .2byte 0x746e + 172c: 5f00 .2byte 0x5f00 + 172e: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 + 1734: 4d5f 5841 455f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x45 + 173a: 5058 .2byte 0x5058 + 173c: 5f5f 3120 3832 .byte 0x5f, 0x5f, 0x20, 0x31, 0x32, 0x38 + 1742: 5f00 .2byte 0x5f00 + 1744: 535f 4454 5043 .byte 0x5f, 0x53, 0x54, 0x44, 0x43, 0x50 + 174a: 5f50 .2byte 0x5f50 + 174c: 4544 .2byte 0x4544 + 174e: 4146 .2byte 0x4146 + 1750: 4c55 .2byte 0x4c55 + 1752: 5f54 .2byte 0x5f54 + 1754: 454e .2byte 0x454e + 1756: 4c415f57 .4byte 0x4c415f57 + 175a: 4749 .2byte 0x4749 + 175c: 4d4e .2byte 0x4d4e + 175e: 4e45 .2byte 0x4e45 + 1760: 5f54 .2byte 0x5f54 + 1762: 205f 3631 5f00 .byte 0x5f, 0x20, 0x31, 0x36, 0x00, 0x5f + 1768: 465f 4e49 5449 .byte 0x5f, 0x46, 0x49, 0x4e, 0x49, 0x54 + 176e: 5f45 .2byte 0x5f45 + 1770: 414d .2byte 0x414d + 1772: 4854 .2byte 0x4854 + 1774: 4f5f 4c4e 5f59 .byte 0x5f, 0x4f, 0x4e, 0x4c, 0x59, 0x5f + 177a: 205f 0030 4e49 .byte 0x5f, 0x20, 0x30, 0x00, 0x49, 0x4e + 1780: 5f54 .2byte 0x5f54 + 1782: 4146 .2byte 0x4146 + 1784: 5f385453 .4byte 0x5f385453 + 1788: 494d .2byte 0x494d + 178a: 204e .2byte 0x204e + 178c: 2d28 .2byte 0x2d28 + 178e: 4e49 .2byte 0x4e49 + 1790: 5f54 .2byte 0x5f54 + 1792: 4146 .2byte 0x4146 + 1794: 5f385453 .4byte 0x5f385453 + 1798: 414d .2byte 0x414d + 179a: 2058 .2byte 0x2058 + 179c: 202d .2byte 0x202d + 179e: 2931 .2byte 0x2931 + 17a0: 5f00 .2byte 0x5f00 + 17a2: 495f 544e 5f38 .byte 0x5f, 0x49, 0x4e, 0x54, 0x38, 0x5f + 17a8: 29632843 .4byte 0x29632843 + 17ac: 6320 .2byte 0x6320 + 17ae: 4100 .2byte 0x4100 + 17b0: 4c4c .2byte 0x4c4c + 17b2: 4953434f .4byte 0x4953434f + 17b6: 455a .2byte 0x455a + 17b8: 3120 .2byte 0x3120 + 17ba: 3030 .2byte 0x3030 + 17bc: 3030 .2byte 0x3030 + 17be: 5000 .2byte 0x5000 + 17c0: 5254 .2byte 0x5254 + 17c2: 4944 .2byte 0x4944 + 17c4: 4646 .2byte 0x4646 + 17c6: 4d5f 5841 5300 .byte 0x5f, 0x4d, 0x41, 0x58, 0x00, 0x53 + 17cc: 5a49 .2byte 0x5a49 + 17ce: 5f45 .2byte 0x5f45 + 17d0: 414d .2byte 0x414d + 17d2: 0058 .2byte 0x58 + 17d4: 5f5f 4347 5f43 .byte 0x5f, 0x5f, 0x47, 0x43, 0x43, 0x5f + 17da: 5441 .2byte 0x5441 + 17dc: 43494d4f .4byte 0x43494d4f + 17e0: 4c5f 4e4f 5f47 .byte 0x5f, 0x4c, 0x4f, 0x4e, 0x47, 0x5f + 17e6: 4f4c .2byte 0x4f4c + 17e8: 465f4b43 .4byte 0x465f4b43 + 17ec: 4552 .2byte 0x4552 + 17ee: 2045 .2byte 0x2045 + 17f0: 0031 .2byte 0x31 + 17f2: 5f5f 4c46 3354 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x33 + 17f8: 5832 .2byte 0x5832 + 17fa: 445f 4749 5f5f .byte 0x5f, 0x44, 0x49, 0x47, 0x5f, 0x5f + 1800: 3120 .2byte 0x3120 + 1802: 0035 .2byte 0x35 + 1804: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f + 180a: 6564 .2byte 0x6564 + 180c: 79746c63 bltu x8,x23,1fa4 + 1810: 6570 .2byte 0x6570 + 1812: 3220 .2byte 0x3220 + 1814: 3030 .2byte 0x3030 + 1816: 4c373037 lui x0,0x4c373 + 181a: 5f00 .2byte 0x5f00 + 181c: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 + 1822: 5f58 .2byte 0x5f58 + 1824: 414d .2byte 0x414d + 1826: 544e .2byte 0x544e + 1828: 445f 4749 5f5f .byte 0x5f, 0x44, 0x49, 0x47, 0x5f, 0x5f + 182e: 3520 .2byte 0x3520 + 1830: 5f5f0033 .4byte 0x5f5f0033 + 1834: 4544 .2byte 0x4544 + 1836: 5250 .2byte 0x5250 + 1838: 4345 .2byte 0x4345 + 183a: 5441 .2byte 0x5441 + 183c: 4445 .2byte 0x4445 + 183e: 3120 .2byte 0x3120 + 1840: 5f00 .2byte 0x5f00 + 1842: 635f 7070 675f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x67 + 1848: 6e65 .2byte 0x6e65 + 184a: 7265 .2byte 0x7265 + 184c: 6369 .2byte 0x6369 + 184e: 6c5f 6d61 6462 .byte 0x5f, 0x6c, 0x61, 0x6d, 0x62, 0x64 + 1854: 7361 .2byte 0x7361 + 1856: 3220 .2byte 0x3220 + 1858: 3130 .2byte 0x3130 + 185a: 4c343033 .4byte 0x4c343033 + 185e: 5500 .2byte 0x5500 + 1860: 4e49 .2byte 0x4e49 + 1862: 5f54 .2byte 0x5f54 + 1864: 4146 .2byte 0x4146 + 1866: 32335453 .4byte 0x32335453 + 186a: 4d5f 5841 5f20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x5f + 1870: 555f 4e49 5f54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x5f + 1876: 4146 .2byte 0x4146 + 1878: 32335453 .4byte 0x32335453 + 187c: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 1882: 5f00 .2byte 0x5f00 + 1884: 435f 4148 5f52 .byte 0x5f, 0x43, 0x48, 0x41, 0x52, 0x5f + 188a: 4942 .2byte 0x4942 + 188c: 5f54 .2byte 0x5f54 + 188e: 205f 0038 5f5f .byte 0x5f, 0x20, 0x38, 0x00, 0x5f, 0x5f + 1894: 5f707063 bgeu x0,x23,1e74 + 1898: 736e .2byte 0x736e + 189a: 6d64 .2byte 0x6d64 + 189c: 2069 .2byte 0x2069 + 189e: 3032 .2byte 0x3032 + 18a0: 3830 .2byte 0x3830 + 18a2: 3930 .2byte 0x3930 + 18a4: 004c .2byte 0x4c + 18a6: 5f5f 4c46 3354 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x33 + 18ac: 5832 .2byte 0x5832 + 18ae: 495f 5f53 4549 .byte 0x5f, 0x49, 0x53, 0x5f, 0x49, 0x45 + 18b4: 30365f43 .4byte 0x30365f43 + 18b8: 3535 .2byte 0x3535 + 18ba: 5f39 .2byte 0x5f39 + 18bc: 205f 0032 5f5f .byte 0x5f, 0x20, 0x32, 0x00, 0x5f, 0x5f + 18c2: 4e49 .2byte 0x4e49 + 18c4: 5054 .2byte 0x5054 + 18c6: 5254 .2byte 0x5254 + 18c8: 575f 4449 4854 .byte 0x5f, 0x57, 0x49, 0x44, 0x54, 0x48 + 18ce: 5f5f 3320 0032 .byte 0x5f, 0x5f, 0x20, 0x33, 0x32, 0x00 + 18d4: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 + 18da: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 + 18e0: 5f38 .2byte 0x5f38 + 18e2: 5954 .2byte 0x5954 + 18e4: 4550 .2byte 0x4550 + 18e6: 5f5f 7520 736e .byte 0x5f, 0x5f, 0x20, 0x75, 0x6e, 0x73 + 18ec: 6769 .2byte 0x6769 + 18ee: 656e .2byte 0x656e + 18f0: 2064 .2byte 0x2064 + 18f2: 72616863 bltu x2,x6,2022 + 18f6: 5f00 .2byte 0x5f00 + 18f8: 475f 4343 445f .byte 0x5f, 0x47, 0x43, 0x43, 0x5f, 0x44 + 18fe: 5345 .2byte 0x5345 + 1900: 5254 .2byte 0x5254 + 1902: 4355 .2byte 0x4355 + 1904: 4954 .2byte 0x4954 + 1906: 4556 .2byte 0x4556 + 1908: 535f 5a49 2045 .byte 0x5f, 0x53, 0x49, 0x5a, 0x45, 0x20 + 190e: 49003233 .4byte 0x49003233 + 1912: 544e .2byte 0x544e + 1914: 3436 .2byte 0x3436 + 1916: 4d5f 5841 5f20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x5f + 191c: 495f 544e 3436 .byte 0x5f, 0x49, 0x4e, 0x54, 0x36, 0x34 + 1922: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 1928: 5f00 .2byte 0x5f00 + 192a: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 + 1930: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 1936: 3120 .2byte 0x3120 + 1938: 372e .2byte 0x372e + 193a: 3739 .2byte 0x3739 + 193c: 3936 .2byte 0x3936 + 193e: 34333133 .4byte 0x34333133 + 1942: 3638 .2byte 0x3638 + 1944: 3332 .2byte 0x3332 + 1946: 3531 .2byte 0x3531 + 1948: 31383037 lui x0,0x31383 + 194c: 3534 .2byte 0x3534 + 194e: 3732 .2byte 0x3732 + 1950: 3234 .2byte 0x3234 + 1952: 31333733 .4byte 0x31333733 + 1956: 33343037 lui x0,0x33343 + 195a: 3735 .2byte 0x3735 + 195c: 2b65 .2byte 0x2b65 + 195e: 46383033 .4byte 0x46383033 + 1962: 3436 .2byte 0x3436 + 1964: 5f00 .2byte 0x5f00 + 1966: 445f 4c42 4d5f .byte 0x5f, 0x44, 0x42, 0x4c, 0x5f, 0x4d + 196c: 5841 .2byte 0x5841 + 196e: 5f5f 6420 756f .byte 0x5f, 0x5f, 0x20, 0x64, 0x6f, 0x75 + 1974: 6c62 .2byte 0x6c62 + 1976: 2865 .2byte 0x2865 + 1978: 2e31 .2byte 0x2e31 + 197a: 36373937 lui x18,0x36373 + 197e: 3339 .2byte 0x3339 + 1980: 3331 .2byte 0x3331 + 1982: 3834 .2byte 0x3834 + 1984: 3236 .2byte 0x3236 + 1986: 37353133 .4byte 0x37353133 + 198a: 3830 .2byte 0x3830 + 198c: 3431 .2byte 0x3431 + 198e: 3235 .2byte 0x3235 + 1990: 33323437 lui x8,0x33323 + 1994: 37313337 lui x6,0x37313 + 1998: 3430 .2byte 0x3430 + 199a: 65373533 .4byte 0x65373533 + 199e: 3830332b .4byte 0x3830332b + 19a2: 294c .2byte 0x294c + 19a4: 4900 .2byte 0x4900 + 19a6: 544e .2byte 0x544e + 19a8: 3631 .2byte 0x3631 + 19aa: 4d5f 4e49 2820 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x20, 0x28 + 19b0: 492d .2byte 0x492d + 19b2: 544e .2byte 0x544e + 19b4: 3631 .2byte 0x3631 + 19b6: 4d5f 5841 2d20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x2d + 19bc: 3120 .2byte 0x3120 + 19be: 0029 .2byte 0x29 + 19c0: 4e49 .2byte 0x4e49 + 19c2: 5f54 .2byte 0x5f54 + 19c4: 4146 .2byte 0x4146 + 19c6: 36315453 .4byte 0x36315453 + 19ca: 4d5f 4e49 2820 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x20, 0x28 + 19d0: 492d .2byte 0x492d + 19d2: 544e .2byte 0x544e + 19d4: 465f 5341 3154 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x31 + 19da: 5f36 .2byte 0x5f36 + 19dc: 414d .2byte 0x414d + 19de: 2058 .2byte 0x2058 + 19e0: 202d .2byte 0x202d + 19e2: 2931 .2byte 0x2931 + 19e4: 4900 .2byte 0x4900 + 19e6: 544e .2byte 0x544e + 19e8: 5450 .2byte 0x5450 + 19ea: 5f52 .2byte 0x5f52 + 19ec: 494d .2byte 0x494d + 19ee: 204e .2byte 0x204e + 19f0: 2d28 .2byte 0x2d28 + 19f2: 4e49 .2byte 0x4e49 + 19f4: 5054 .2byte 0x5054 + 19f6: 5254 .2byte 0x5254 + 19f8: 4d5f 5841 2d20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x2d + 19fe: 3120 .2byte 0x3120 + 1a00: 0029 .2byte 0x29 + 1a02: 4e49 .2byte 0x4e49 + 1a04: 5f54 .2byte 0x5f54 + 1a06: 454c .2byte 0x454c + 1a08: 5341 .2byte 0x5341 + 1a0a: 3854 .2byte 0x3854 + 1a0c: 4d5f 4e49 5f00 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x00, 0x5f + 1a12: 415f 4f54 494d .byte 0x5f, 0x41, 0x54, 0x4f, 0x4d, 0x49 + 1a18: 4f435f43 .4byte 0x4f435f43 + 1a1c: 534e .2byte 0x534e + 1a1e: 4d55 .2byte 0x4d55 + 1a20: 2045 .2byte 0x2045 + 1a22: 0031 .2byte 0x31 + 1a24: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f + 1a2a: 6574 .2byte 0x6574 + 1a2c: 706d .2byte 0x706d + 1a2e: 616c .2byte 0x616c + 1a30: 6574 .2byte 0x6574 + 1a32: 615f 7475 206f .byte 0x5f, 0x61, 0x75, 0x74, 0x6f, 0x20 + 1a38: 3032 .2byte 0x3032 + 1a3a: 3631 .2byte 0x3631 + 1a3c: 3630 .2byte 0x3630 + 1a3e: 004c .2byte 0x4c + 1a40: 5f5f 4c46 3654 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x36 + 1a46: 5834 .2byte 0x5834 + 1a48: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 1a4e: 3120 .2byte 0x3120 + 1a50: 312e .2byte 0x312e + 1a52: 3938 .2byte 0x3938 + 1a54: 34313337 lui x6,0x34313 + 1a58: 3539 .2byte 0x3539 + 1a5a: 32373533 .4byte 0x32373533 + 1a5e: 36373133 .4byte 0x36373133 + 1a62: 3035 .2byte 0x3035 + 1a64: 3538 .2byte 0x3538 + 1a66: 33393537 lui x10,0x33393 + 1a6a: 3632 .2byte 0x3632 + 1a6c: 3236 .2byte 0x3236 + 1a6e: 3038 .2byte 0x3038 + 1a70: 3730 .2byte 0x3730 + 1a72: 3230 .2byte 0x3230 + 1a74: 2b65 .2byte 0x2b65 + 1a76: 3934 .2byte 0x3934 + 1a78: 36463233 .4byte 0x36463233 + 1a7c: 7834 .2byte 0x7834 + 1a7e: 5f00 .2byte 0x5f00 + 1a80: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 + 1a86: 5f58 .2byte 0x5f58 + 1a88: 494d .2byte 0x494d + 1a8a: 5f4e .2byte 0x5f4e + 1a8c: 205f 2e32 3232 .byte 0x5f, 0x20, 0x32, 0x2e, 0x32, 0x32 + 1a92: 3035 .2byte 0x3035 + 1a94: 35383337 lui x6,0x35383 + 1a98: 3538 .2byte 0x3538 + 1a9a: 3730 .2byte 0x3730 + 1a9c: 3032 .2byte 0x3032 + 1a9e: 3331 .2byte 0x3331 + 1aa0: 3338 .2byte 0x3338 + 1aa2: 3930 .2byte 0x3930 + 1aa4: 3230 .2byte 0x3230 + 1aa6: 31373233 .4byte 0x31373233 + 1aaa: 32333337 lui x6,0x32333 + 1aae: 3034 .2byte 0x3034 + 1ab0: 3034 .2byte 0x3034 + 1ab2: 6536 .2byte 0x6536 + 1ab4: 332d .2byte 0x332d + 1ab6: 3830 .2byte 0x3830 + 1ab8: 3346 .2byte 0x3346 + 1aba: 7832 .2byte 0x7832 + 1abc: 5f00 .2byte 0x5f00 + 1abe: 5f434347 .4byte 0x5f434347 + 1ac2: 50415257 .4byte 0x50415257 + 1ac6: 535f 4454 4e49 .byte 0x5f, 0x53, 0x54, 0x44, 0x49, 0x4e + 1acc: 5f54 .2byte 0x5f54 + 1ace: 2048 .2byte 0x2048 + 1ad0: 5f00 .2byte 0x5f00 + 1ad2: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 + 1ad8: 5f58 .2byte 0x5f58 + 1ada: 4148 .2byte 0x4148 + 1adc: 4e495f53 .4byte 0x4e495f53 + 1ae0: 4946 .2byte 0x4946 + 1ae2: 494e .2byte 0x494e + 1ae4: 5954 .2byte 0x5954 + 1ae6: 5f5f 3120 5f00 .byte 0x5f, 0x5f, 0x20, 0x31, 0x00, 0x5f + 1aec: 475f 4343 415f .byte 0x5f, 0x47, 0x43, 0x43, 0x5f, 0x41 + 1af2: 4f54 .2byte 0x4f54 + 1af4: 494d .2byte 0x494d + 1af6: 45545f43 .4byte 0x45545f43 + 1afa: 415f5453 .4byte 0x415f5453 + 1afe: 444e .2byte 0x444e + 1b00: 535f 5445 545f .byte 0x5f, 0x53, 0x45, 0x54, 0x5f, 0x54 + 1b06: 5552 .2byte 0x5552 + 1b08: 5645 .2byte 0x5645 + 1b0a: 4c41 .2byte 0x4c41 + 1b0c: 3120 .2byte 0x3120 + 1b0e: 5f00 .2byte 0x5f00 + 1b10: 475f 4343 485f .byte 0x5f, 0x47, 0x43, 0x43, 0x5f, 0x48 + 1b16: 5641 .2byte 0x5641 + 1b18: 5f45 .2byte 0x5f45 + 1b1a: 5744 .2byte 0x5744 + 1b1c: 5241 .2byte 0x5241 + 1b1e: 3246 .2byte 0x3246 + 1b20: 435f 4946 415f .byte 0x5f, 0x43, 0x46, 0x49, 0x5f, 0x41 + 1b26: 31204d53 .4byte 0x31204d53 + 1b2a: 5f00 .2byte 0x5f00 + 1b2c: 535f 5a49 4f45 .byte 0x5f, 0x53, 0x49, 0x5a, 0x45, 0x4f + 1b32: 5f46 .2byte 0x5f46 + 1b34: 4c46 .2byte 0x4c46 + 1b36: 5f54414f .4byte 0x5f54414f + 1b3a: 205f 0034 5f5f .byte 0x5f, 0x20, 0x34, 0x00, 0x5f, 0x5f + 1b40: 4e49 .2byte 0x4e49 + 1b42: 5f54 .2byte 0x5f54 + 1b44: 4146 .2byte 0x4146 + 1b46: 32335453 .4byte 0x32335453 + 1b4a: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 1b50: 3020 .2byte 0x3020 + 1b52: 3778 .2byte 0x3778 + 1b54: 6666 .2byte 0x6666 + 1b56: 6666 .2byte 0x6666 + 1b58: 6666 .2byte 0x6666 + 1b5a: 0066 .2byte 0x66 + 1b5c: 5f5f 4c46 3654 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x36 + 1b62: 5834 .2byte 0x5834 + 1b64: 485f 5341 515f .byte 0x5f, 0x48, 0x41, 0x53, 0x5f, 0x51 + 1b6a: 4955 .2byte 0x4955 + 1b6c: 5445 .2byte 0x5445 + 1b6e: 4e5f 4e41 5f5f .byte 0x5f, 0x4e, 0x41, 0x4e, 0x5f, 0x5f + 1b74: 3120 .2byte 0x3120 + 1b76: 5f00 .2byte 0x5f00 + 1b78: 465f 544c 485f .byte 0x5f, 0x46, 0x4c, 0x54, 0x5f, 0x48 + 1b7e: 5341 .2byte 0x5341 + 1b80: 495f 464e 4e49 .byte 0x5f, 0x49, 0x4e, 0x46, 0x49, 0x4e + 1b86: 5449 .2byte 0x5449 + 1b88: 5f59 .2byte 0x5f59 + 1b8a: 205f 0031 5f5f .byte 0x5f, 0x20, 0x31, 0x00, 0x5f, 0x5f + 1b90: 43445453 .4byte 0x43445453 + 1b94: 5f5f 3120 5f00 .byte 0x5f, 0x5f, 0x20, 0x31, 0x00, 0x5f + 1b9a: 535f 5a49 4f45 .byte 0x5f, 0x53, 0x49, 0x5a, 0x45, 0x4f + 1ba0: 5f46 .2byte 0x5f46 + 1ba2: 4f4c .2byte 0x4f4c + 1ba4: 474e .2byte 0x474e + 1ba6: 5f5f 3420 5f00 .byte 0x5f, 0x5f, 0x20, 0x34, 0x00, 0x5f + 1bac: 445f 4c42 4d5f .byte 0x5f, 0x44, 0x42, 0x4c, 0x5f, 0x4d + 1bb2: 5841 .2byte 0x5841 + 1bb4: 455f 5058 5f5f .byte 0x5f, 0x45, 0x58, 0x50, 0x5f, 0x5f + 1bba: 3120 .2byte 0x3120 + 1bbc: 3230 .2byte 0x3230 + 1bbe: 0034 .2byte 0x34 + 1bc0: 5a5f 6135 6c6c .byte 0x5f, 0x5a, 0x35, 0x61, 0x6c, 0x6c + 1bc6: 0069636f jal x6,97bcc <__BSS_END__+0x85498> + 1bca: 5f5f 4e49 5f54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x5f + 1bd0: 4146 .2byte 0x4146 + 1bd2: 32335453 .4byte 0x32335453 + 1bd6: 575f 4449 4854 .byte 0x5f, 0x57, 0x49, 0x44, 0x54, 0x48 + 1bdc: 5f5f 3320 0032 .byte 0x5f, 0x5f, 0x20, 0x33, 0x32, 0x00 + 1be2: 4955 .2byte 0x4955 + 1be4: 544e .2byte 0x544e + 1be6: 5450 .2byte 0x5450 + 1be8: 5f52 .2byte 0x5f52 + 1bea: 414d .2byte 0x414d + 1bec: 2058 .2byte 0x2058 + 1bee: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 + 1bf4: 5450 .2byte 0x5450 + 1bf6: 5f52 .2byte 0x5f52 + 1bf8: 414d .2byte 0x414d + 1bfa: 5f58 .2byte 0x5f58 + 1bfc: 005f 5f5f 4c46 .byte 0x5f, 0x00, 0x5f, 0x5f, 0x46, 0x4c + 1c02: 3654 .2byte 0x3654 + 1c04: 5834 .2byte 0x5834 + 1c06: 4d5f 4e41 5f54 .byte 0x5f, 0x4d, 0x41, 0x4e, 0x54, 0x5f + 1c0c: 4944 .2byte 0x4944 + 1c0e: 205f5f47 .4byte 0x205f5f47 + 1c12: 3131 .2byte 0x3131 + 1c14: 5f5f0033 .4byte 0x5f5f0033 + 1c18: 5f707063 bgeu x0,x23,21f8 + 1c1c: 7672 .2byte 0x7672 + 1c1e: 6c61 .2byte 0x6c61 + 1c20: 6575 .2byte 0x6575 + 1c22: 725f 6665 7265 .byte 0x5f, 0x72, 0x65, 0x66, 0x65, 0x72 + 1c28: 6e65 .2byte 0x6e65 + 1c2a: 20736563 bltu x6,x7,1e34 + 1c2e: 3032 .2byte 0x3032 + 1c30: 3630 .2byte 0x3630 + 1c32: 3031 .2byte 0x3031 + 1c34: 004c .2byte 0x4c + 1c36: 5f5f 4f4c 474e .byte 0x5f, 0x5f, 0x4c, 0x4f, 0x4e, 0x47 + 1c3c: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 1c42: 3020 .2byte 0x3020 + 1c44: 3778 .2byte 0x3778 + 1c46: 6666 .2byte 0x6666 + 1c48: 6666 .2byte 0x6666 + 1c4a: 6666 .2byte 0x6666 + 1c4c: 4c66 .2byte 0x4c66 + 1c4e: 5f00 .2byte 0x5f00 + 1c50: 495f 544e 3631 .byte 0x5f, 0x49, 0x4e, 0x54, 0x31, 0x36 + 1c56: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 1c5c: 3020 .2byte 0x3020 + 1c5e: 3778 .2byte 0x3778 + 1c60: 6666 .2byte 0x6666 + 1c62: 0066 .2byte 0x66 + 1c64: 5f5f 4353 4148 .byte 0x5f, 0x5f, 0x53, 0x43, 0x48, 0x41 + 1c6a: 5f52 .2byte 0x5f52 + 1c6c: 54444957 .4byte 0x54444957 + 1c70: 5f48 .2byte 0x5f48 + 1c72: 205f 0038 5f5f .byte 0x5f, 0x20, 0x38, 0x00, 0x5f, 0x5f + 1c78: 5f707063 bgeu x0,x23,2258 + 1c7c: 6564 .2byte 0x6564 + 1c7e: 79746c63 bltu x8,x23,2416 + 1c82: 6570 .2byte 0x6570 + 1c84: 615f 7475 206f .byte 0x5f, 0x61, 0x75, 0x74, 0x6f, 0x20 + 1c8a: 3032 .2byte 0x3032 + 1c8c: 3331 .2byte 0x3331 + 1c8e: 3430 .2byte 0x3430 + 1c90: 004c .2byte 0x4c + 1c92: 5f5f 444c 4c42 .byte 0x5f, 0x5f, 0x4c, 0x44, 0x42, 0x4c + 1c98: 4d5f 4e49 315f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x31 + 1c9e: 5f30 .2byte 0x5f30 + 1ca0: 5845 .2byte 0x5845 + 1ca2: 5f50 .2byte 0x5f50 + 1ca4: 205f 2d28 3934 .byte 0x5f, 0x20, 0x28, 0x2d, 0x34, 0x39 + 1caa: 00293133 sltu x2,x18,x2 + 1cae: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f + 1cb4: 6c61 .2byte 0x6c61 + 1cb6: 6769 .2byte 0x6769 + 1cb8: 656e .2byte 0x656e + 1cba: 5f64 .2byte 0x5f64 + 1cbc: 656e .2byte 0x656e + 1cbe: 30322077 .4byte 0x30322077 + 1cc2: 3631 .2byte 0x3631 + 1cc4: 3630 .2byte 0x3630 + 1cc6: 004c .2byte 0x4c + 1cc8: 6c61 .2byte 0x6c61 + 1cca: 6f6c .2byte 0x6f6c + 1ccc: 5f007063 bgeu x0,x16,22ac + 1cd0: 535f 5a49 4f45 .byte 0x5f, 0x53, 0x49, 0x5a, 0x45, 0x4f + 1cd6: 5f46 .2byte 0x5f46 + 1cd8: 4f44 .2byte 0x4f44 + 1cda: 4255 .2byte 0x4255 + 1cdc: 454c .2byte 0x454c + 1cde: 5f5f 3820 5f00 .byte 0x5f, 0x5f, 0x20, 0x38, 0x00, 0x5f + 1ce4: 475f 554e 5f43 .byte 0x5f, 0x47, 0x4e, 0x55, 0x43, 0x5f + 1cea: 4150 .2byte 0x4150 + 1cec: 4354 .2byte 0x4354 + 1cee: 4c48 .2byte 0x4c48 + 1cf0: 5645 .2byte 0x5645 + 1cf2: 4c45 .2byte 0x4c45 + 1cf4: 5f5f 3020 4700 .byte 0x5f, 0x5f, 0x20, 0x30, 0x00, 0x47 + 1cfa: 554e .2byte 0x554e + 1cfc: 4320 .2byte 0x4320 + 1cfe: 37312b2b .4byte 0x37312b2b + 1d02: 3120 .2byte 0x3120 + 1d04: 2e32 .2byte 0x2e32 + 1d06: 2e32 .2byte 0x2e32 + 1d08: 2030 .2byte 0x2030 + 1d0a: 6d2d .2byte 0x6d2d + 1d0c: 6261 .2byte 0x6261 + 1d0e: 3d69 .2byte 0x3d69 + 1d10: 6c69 .2byte 0x6c69 + 1d12: 3370 .2byte 0x3370 + 1d14: 2032 .2byte 0x2032 + 1d16: 6d2d .2byte 0x6d2d + 1d18: 7574 .2byte 0x7574 + 1d1a: 656e .2byte 0x656e + 1d1c: 723d .2byte 0x723d + 1d1e: 656b636f jal x6,b8374 <__BSS_END__+0xa5c40> + 1d22: 2074 .2byte 0x2074 + 1d24: 6d2d .2byte 0x6d2d + 1d26: 7369 .2byte 0x7369 + 1d28: 2d61 .2byte 0x2d61 + 1d2a: 63657073 .4byte 0x63657073 + 1d2e: 323d .2byte 0x323d + 1d30: 3130 .2byte 0x3130 + 1d32: 3139 .2byte 0x3139 + 1d34: 3132 .2byte 0x3132 + 1d36: 6d2d2033 .4byte 0x6d2d2033 + 1d3a: 7261 .2byte 0x7261 + 1d3c: 723d6863 bltu x26,x3,246c + 1d40: 3376 .2byte 0x3376 + 1d42: 6932 .2byte 0x6932 + 1d44: 2d20 .2byte 0x2d20 + 1d46: 672d2067 .4byte 0x672d2067 + 1d4a: 33626467 .4byte 0x33626467 + 1d4e: 2d20 .2byte 0x2d20 + 1d50: 2d20304f .4byte 0x2d20304f + 1d54: 6666 .2byte 0x6666 + 1d56: 6572 .2byte 0x6572 + 1d58: 7365 .2byte 0x7365 + 1d5a: 6174 .2byte 0x6174 + 1d5c: 646e .2byte 0x646e + 1d5e: 6e69 .2byte 0x6e69 + 1d60: 662d2067 .4byte 0x662d2067 + 1d64: 6f6e .2byte 0x6f6e + 1d66: 702d .2byte 0x702d + 1d68: 6369 .2byte 0x6369 + 1d6a: 5500 .2byte 0x5500 + 1d6c: 4e49 .2byte 0x4e49 + 1d6e: 5f54 .2byte 0x5f54 + 1d70: 454c .2byte 0x454c + 1d72: 5341 .2byte 0x5341 + 1d74: 3654 .2byte 0x3654 + 1d76: 5f34 .2byte 0x5f34 + 1d78: 414d .2byte 0x414d + 1d7a: 2058 .2byte 0x2058 + 1d7c: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 + 1d82: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 + 1d88: 3436 .2byte 0x3436 + 1d8a: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 1d90: 5f00 .2byte 0x5f00 + 1d92: 475f 5858 455f .byte 0x5f, 0x47, 0x58, 0x58, 0x5f, 0x45 + 1d98: 5058 .2byte 0x5058 + 1d9a: 5245 .2byte 0x5245 + 1d9c: 4d49 .2byte 0x4d49 + 1d9e: 4e45 .2byte 0x4e45 + 1da0: 4154 .2byte 0x4154 + 1da2: 5f4c .2byte 0x5f4c + 1da4: 30585843 .4byte 0x30585843 + 1da8: 5f58 .2byte 0x5f58 + 1daa: 205f 0031 5f5f .byte 0x5f, 0x20, 0x31, 0x00, 0x5f, 0x5f + 1db0: 544e4957 .4byte 0x544e4957 + 1db4: 4d5f 4e49 5f5f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x5f + 1dba: 3020 .2byte 0x3020 + 1dbc: 0055 .2byte 0x55 + 1dbe: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f + 1dc4: 6176 .2byte 0x6176 + 1dc6: 6972 .2byte 0x6972 + 1dc8: 6461 .2byte 0x6461 + 1dca: 6369 .2byte 0x6369 + 1dcc: 745f 6d65 6c70 .byte 0x5f, 0x74, 0x65, 0x6d, 0x70, 0x6c + 1dd2: 7461 .2byte 0x7461 + 1dd4: 7365 .2byte 0x7365 + 1dd6: 3220 .2byte 0x3220 + 1dd8: 3030 .2byte 0x3030 + 1dda: 4c343037 lui x0,0x4c343 + 1dde: 4900 .2byte 0x4900 + 1de0: 544e .2byte 0x544e + 1de2: 465f 5341 3354 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x33 + 1de8: 5f32 .2byte 0x5f32 + 1dea: 494d .2byte 0x494d + 1dec: 004e .2byte 0x4e + 1dee: 5f5f 4c46 5f54 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x5f + 1df4: 4f4e .2byte 0x4f4e + 1df6: 4d52 .2byte 0x4d52 + 1df8: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 1dfe: 3320 .2byte 0x3320 + 1e00: 342e .2byte 0x342e + 1e02: 3230 .2byte 0x3230 + 1e04: 3238 .2byte 0x3238 + 1e06: 36363433 .4byte 0x36363433 + 1e0a: 32353833 .4byte 0x32353833 + 1e0e: 3838 .2byte 0x3838 + 1e10: 3935 .2byte 0x3935 + 1e12: 3138 .2byte 0x3138 + 1e14: 3731 .2byte 0x3731 + 1e16: 3430 .2byte 0x3430 + 1e18: 3831 .2byte 0x3831 + 1e1a: 34383433 .4byte 0x34383433 + 1e1e: 3135 .2byte 0x3135 + 1e20: 3936 .2byte 0x3936 + 1e22: 3532 .2byte 0x3532 + 1e24: 2b65 .2byte 0x2b65 + 1e26: 00463833 sltu x16,x12,x4 + 1e2a: 5f5f 5453 4344 .byte 0x5f, 0x5f, 0x53, 0x54, 0x44, 0x43 + 1e30: 555f 4654 315f .byte 0x5f, 0x55, 0x54, 0x46, 0x5f, 0x31 + 1e36: 5f36 .2byte 0x5f36 + 1e38: 205f 0031 5f5f .byte 0x5f, 0x20, 0x31, 0x00, 0x5f, 0x5f + 1e3e: 5f707063 bgeu x0,x23,241e + 1e42: 6e69 .2byte 0x6e69 + 1e44: 696c .2byte 0x696c + 1e46: 656e .2byte 0x656e + 1e48: 765f 7261 6169 .byte 0x5f, 0x76, 0x61, 0x72, 0x69, 0x61 + 1e4e: 6c62 .2byte 0x6c62 + 1e50: 7365 .2byte 0x7365 + 1e52: 3220 .2byte 0x3220 + 1e54: 3130 .2byte 0x3130 + 1e56: 3036 .2byte 0x3036 + 1e58: 4c36 .2byte 0x4c36 + 1e5a: 5f00 .2byte 0x5f00 + 1e5c: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 + 1e62: 495f 5f53 4549 .byte 0x5f, 0x49, 0x53, 0x5f, 0x49, 0x45 + 1e68: 30365f43 .4byte 0x30365f43 + 1e6c: 3535 .2byte 0x3535 + 1e6e: 5f39 .2byte 0x5f39 + 1e70: 205f 0032 4955 .byte 0x5f, 0x20, 0x32, 0x00, 0x55, 0x49 + 1e76: 544e .2byte 0x544e + 1e78: 465f 5341 3354 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x33 + 1e7e: 5f32 .2byte 0x5f32 + 1e80: 414d .2byte 0x414d + 1e82: 0058 .2byte 0x58 + 1e84: 4955 .2byte 0x4955 + 1e86: 544e .2byte 0x544e + 1e88: 435f3233 .4byte 0x435f3233 + 1e8c: 6328 .2byte 0x6328 + 1e8e: 2029 .2byte 0x2029 + 1e90: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 + 1e96: 435f3233 .4byte 0x435f3233 + 1e9a: 6328 .2byte 0x6328 + 1e9c: 0029 .2byte 0x29 + 1e9e: 4e49 .2byte 0x4e49 + 1ea0: 5f54 .2byte 0x5f54 + 1ea2: 454c .2byte 0x454c + 1ea4: 5341 .2byte 0x5341 + 1ea6: 3854 .2byte 0x3854 + 1ea8: 4d5f 4e49 2820 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x20, 0x28 + 1eae: 492d .2byte 0x492d + 1eb0: 544e .2byte 0x544e + 1eb2: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 + 1eb8: 5f38 .2byte 0x5f38 + 1eba: 414d .2byte 0x414d + 1ebc: 2058 .2byte 0x2058 + 1ebe: 202d .2byte 0x202d + 1ec0: 2931 .2byte 0x2931 + 1ec2: 5f00 .2byte 0x5f00 + 1ec4: 4c5f 4244 5f4c .byte 0x5f, 0x4c, 0x44, 0x42, 0x4c, 0x5f + 1eca: 4148 .2byte 0x4148 + 1ecc: 4e495f53 .4byte 0x4e495f53 + 1ed0: 4946 .2byte 0x4946 + 1ed2: 494e .2byte 0x494e + 1ed4: 5954 .2byte 0x5954 + 1ed6: 5f5f 3120 5f00 .byte 0x5f, 0x5f, 0x20, 0x31, 0x00, 0x5f + 1edc: 475f 4343 495f .byte 0x5f, 0x47, 0x43, 0x43, 0x5f, 0x49 + 1ee2: 4345 .2byte 0x4345 + 1ee4: 355f 3935 435f .byte 0x5f, 0x35, 0x35, 0x39, 0x5f, 0x43 + 1eea: 4c504d4f .4byte 0x4c504d4f + 1eee: 5845 .2byte 0x5845 + 1ef0: 3020 .2byte 0x3020 + 1ef2: 5f00 .2byte 0x5f00 + 1ef4: 555f 4e49 3354 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x33 + 1efa: 5f32 .2byte 0x5f32 + 1efc: 414d .2byte 0x414d + 1efe: 5f58 .2byte 0x5f58 + 1f00: 205f 7830 6666 .byte 0x5f, 0x20, 0x30, 0x78, 0x66, 0x66 + 1f06: 6666 .2byte 0x6666 + 1f08: 6666 .2byte 0x6666 + 1f0a: 6666 .2byte 0x6666 + 1f0c: 4c55 .2byte 0x4c55 + 1f0e: 5f00 .2byte 0x5f00 + 1f10: 635f 7070 675f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x67 + 1f16: 6175 .2byte 0x6175 + 1f18: 6172 .2byte 0x6172 + 1f1a: 746e .2byte 0x746e + 1f1c: 6565 .2byte 0x6565 + 1f1e: 5f64 .2byte 0x5f64 + 1f20: 79706f63 bltu x0,x23,26be + 1f24: 655f 696c 6973 .byte 0x5f, 0x65, 0x6c, 0x69, 0x73, 0x69 + 1f2a: 32206e6f jal x28,824c + 1f2e: 3130 .2byte 0x3130 + 1f30: 3036 .2byte 0x3036 + 1f32: 4c36 .2byte 0x4c36 + 1f34: 5f00 .2byte 0x5f00 + 1f36: 4c5f 4244 5f4c .byte 0x5f, 0x4c, 0x44, 0x42, 0x4c, 0x5f + 1f3c: 4f4e .2byte 0x4f4e + 1f3e: 4d52 .2byte 0x4d52 + 1f40: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 1f46: 3120 .2byte 0x3120 + 1f48: 312e .2byte 0x312e + 1f4a: 3938 .2byte 0x3938 + 1f4c: 34313337 lui x6,0x34313 + 1f50: 3539 .2byte 0x3539 + 1f52: 32373533 .4byte 0x32373533 + 1f56: 36373133 .4byte 0x36373133 + 1f5a: 3035 .2byte 0x3035 + 1f5c: 3538 .2byte 0x3538 + 1f5e: 33393537 lui x10,0x33393 + 1f62: 3632 .2byte 0x3632 + 1f64: 3236 .2byte 0x3236 + 1f66: 3038 .2byte 0x3038 + 1f68: 3730 .2byte 0x3730 + 1f6a: 3230 .2byte 0x3230 + 1f6c: 2b65 .2byte 0x2b65 + 1f6e: 3934 .2byte 0x3934 + 1f70: 004c3233 sltu x4,x24,x4 + 1f74: 5f5f 4953 455a .byte 0x5f, 0x5f, 0x53, 0x49, 0x5a, 0x45 + 1f7a: 575f464f .4byte 0x575f464f + 1f7e: 52414843 .4byte 0x52414843 + 1f82: 545f 5f5f 3420 .byte 0x5f, 0x54, 0x5f, 0x5f, 0x20, 0x34 + 1f88: 4900 .2byte 0x4900 + 1f8a: 544e .2byte 0x544e + 1f8c: 465f 5341 3854 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x38 + 1f92: 4d5f 4e49 5f00 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x00, 0x5f + 1f98: 465f 544c 3231 .byte 0x5f, 0x46, 0x4c, 0x54, 0x31, 0x32 + 1f9e: 5f38 .2byte 0x5f38 + 1fa0: 494d .2byte 0x494d + 1fa2: 5f4e .2byte 0x5f4e + 1fa4: 3031 .2byte 0x3031 + 1fa6: 455f 5058 5f5f .byte 0x5f, 0x45, 0x58, 0x50, 0x5f, 0x5f + 1fac: 2820 .2byte 0x2820 + 1fae: 342d .2byte 0x342d + 1fb0: 3339 .2byte 0x3339 + 1fb2: 2931 .2byte 0x2931 + 1fb4: 5f00 .2byte 0x5f00 + 1fb6: 465f 4f4c 5441 .byte 0x5f, 0x46, 0x4c, 0x4f, 0x41, 0x54 + 1fbc: 575f 524f 5f44 .byte 0x5f, 0x57, 0x4f, 0x52, 0x44, 0x5f + 1fc2: 4544524f .4byte 0x4544524f + 1fc6: 5f52 .2byte 0x5f52 + 1fc8: 205f 5f5f 524f .byte 0x5f, 0x20, 0x5f, 0x5f, 0x4f, 0x52 + 1fce: 4544 .2byte 0x4544 + 1fd0: 5f52 .2byte 0x5f52 + 1fd2: 494c .2byte 0x494c + 1fd4: 5454 .2byte 0x5454 + 1fd6: 454c .2byte 0x454c + 1fd8: 455f 444e 4149 .byte 0x5f, 0x45, 0x4e, 0x44, 0x49, 0x41 + 1fde: 5f4e .2byte 0x5f4e + 1fe0: 005f 5f5f 4953 .byte 0x5f, 0x00, 0x5f, 0x5f, 0x53, 0x49 + 1fe6: 455a .2byte 0x455a + 1fe8: 575f 4449 4854 .byte 0x5f, 0x57, 0x49, 0x44, 0x54, 0x48 + 1fee: 5f5f 3320 0032 .byte 0x5f, 0x5f, 0x20, 0x33, 0x32, 0x00 + 1ff4: 4e49 .2byte 0x4e49 + 1ff6: 5054 .2byte 0x5054 + 1ff8: 5254 .2byte 0x5254 + 1ffa: 4d5f 4e49 5f00 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x00, 0x5f + 2000: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 + 2006: 445f 4e45 524f .byte 0x5f, 0x44, 0x45, 0x4e, 0x4f, 0x52 + 200c: 5f4d .2byte 0x5f4d + 200e: 494d .2byte 0x494d + 2010: 5f4e .2byte 0x5f4e + 2012: 205f 2e31 3034 .byte 0x5f, 0x20, 0x31, 0x2e, 0x34, 0x30 + 2018: 3231 .2byte 0x3231 + 201a: 3839 .2byte 0x3839 + 201c: 3634 .2byte 0x3634 + 201e: 3334 .2byte 0x3334 + 2020: 3432 .2byte 0x3432 + 2022: 3138 .2byte 0x3138 + 2024: 30373037 lui x0,0x30373 + 2028: 3239 .2byte 0x3239 + 202a: 39323733 .4byte 0x39323733 + 202e: 3835 .2byte 0x3835 + 2030: 39383233 .4byte 0x39383233 + 2034: 3139 .2byte 0x3139 + 2036: 3136 .2byte 0x3136 + 2038: 342d6533 .4byte 0x342d6533 + 203c: 4635 .2byte 0x4635 + 203e: 5f003233 .4byte 0x5f003233 + 2042: 535f 4749 415f .byte 0x5f, 0x53, 0x49, 0x47, 0x5f, 0x41 + 2048: 4f54 .2byte 0x4f54 + 204a: 494d .2byte 0x494d + 204c: 494d5f43 .4byte 0x494d5f43 + 2050: 5f4e .2byte 0x5f4e + 2052: 205f 2d28 5f5f .byte 0x5f, 0x20, 0x28, 0x2d, 0x5f, 0x5f + 2058: 5f474953 .4byte 0x5f474953 + 205c: 5441 .2byte 0x5441 + 205e: 43494d4f .4byte 0x43494d4f + 2062: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 2068: 2d20 .2byte 0x2d20 + 206a: 3120 .2byte 0x3120 + 206c: 0029 .2byte 0x29 + 206e: 4955 .2byte 0x4955 + 2070: 544e .2byte 0x544e + 2072: 435f3233 .4byte 0x435f3233 + 2076: 5500 .2byte 0x5500 + 2078: 4e49 .2byte 0x4e49 + 207a: 4d54 .2byte 0x4d54 + 207c: 5841 .2byte 0x5841 + 207e: 435f 5f00 4c5f .byte 0x5f, 0x43, 0x00, 0x5f, 0x5f, 0x4c + 2084: 5f474e4f .4byte 0x5f474e4f + 2088: 54444957 .4byte 0x54444957 + 208c: 5f48 .2byte 0x5f48 + 208e: 205f 3233 5f00 .byte 0x5f, 0x20, 0x33, 0x32, 0x00, 0x5f + 2094: 415f 4f54 494d .byte 0x5f, 0x41, 0x54, 0x4f, 0x4d, 0x49 + 209a: 43415f43 .4byte 0x43415f43 + 209e: 5551 .2byte 0x5551 + 20a0: 5249 .2byte 0x5249 + 20a2: 2045 .2byte 0x2045 + 20a4: 0032 .2byte 0x32 + 20a6: 5f5f 4843 5241 .byte 0x5f, 0x5f, 0x43, 0x48, 0x41, 0x52 + 20ac: 545f3233 .4byte 0x545f3233 + 20b0: 5059 .2byte 0x5059 + 20b2: 5f45 .2byte 0x5f45 + 20b4: 205f 6f6c 676e .byte 0x5f, 0x20, 0x6c, 0x6f, 0x6e, 0x67 + 20ba: 7520 .2byte 0x7520 + 20bc: 736e .2byte 0x736e + 20be: 6769 .2byte 0x6769 + 20c0: 656e .2byte 0x656e + 20c2: 2064 .2byte 0x2064 + 20c4: 6e69 .2byte 0x6e69 + 20c6: 0074 .2byte 0x74 + 20c8: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 + 20ce: 3436 .2byte 0x3436 + 20d0: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 20d6: 3020 .2byte 0x3020 + 20d8: 6678 .2byte 0x6678 + 20da: 6666 .2byte 0x6666 + 20dc: 6666 .2byte 0x6666 + 20de: 6666 .2byte 0x6666 + 20e0: 6666 .2byte 0x6666 + 20e2: 6666 .2byte 0x6666 + 20e4: 6666 .2byte 0x6666 + 20e6: 6666 .2byte 0x6666 + 20e8: 5566 .2byte 0x5566 + 20ea: 4c4c .2byte 0x4c4c + 20ec: 5f00 .2byte 0x5f00 + 20ee: 565f 5245 4953 .byte 0x5f, 0x56, 0x45, 0x52, 0x53, 0x49 + 20f4: 5f5f4e4f .4byte 0x5f5f4e4f + 20f8: 2220 .2byte 0x2220 + 20fa: 3231 .2byte 0x3231 + 20fc: 322e .2byte 0x322e + 20fe: 302e .2byte 0x302e + 2100: 0022 .2byte 0x22 + 2102: 4955 .2byte 0x4955 + 2104: 544e .2byte 0x544e + 2106: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 + 210c: 3631 .2byte 0x3631 + 210e: 4d5f 5841 5f20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x5f + 2114: 555f 4e49 5f54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x5f + 211a: 454c .2byte 0x454c + 211c: 5341 .2byte 0x5341 + 211e: 3154 .2byte 0x3154 + 2120: 5f36 .2byte 0x5f36 + 2122: 414d .2byte 0x414d + 2124: 5f58 .2byte 0x5f58 + 2126: 005f 5f5f 7063 .byte 0x5f, 0x00, 0x5f, 0x5f, 0x63, 0x70 + 212c: 5f70 .2byte 0x5f70 + 212e: 6f66 .2byte 0x6f66 + 2130: 646c .2byte 0x646c + 2132: 655f 7078 6572 .byte 0x5f, 0x65, 0x78, 0x70, 0x72, 0x65 + 2138: 6f697373 .4byte 0x6f697373 + 213c: 736e .2byte 0x736e + 213e: 3220 .2byte 0x3220 + 2140: 3130 .2byte 0x3130 + 2142: 3036 .2byte 0x3036 + 2144: 49004c33 .4byte 0x49004c33 + 2148: 544e .2byte 0x544e + 214a: 3436 .2byte 0x3436 + 214c: 4d5f 4e49 2820 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x20, 0x28 + 2152: 492d .2byte 0x492d + 2154: 544e .2byte 0x544e + 2156: 3436 .2byte 0x3436 + 2158: 4d5f 5841 2d20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x2d + 215e: 3120 .2byte 0x3120 + 2160: 0029 .2byte 0x29 + 2162: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 + 2168: 5f38 .2byte 0x5f38 + 216a: 29632843 .4byte 0x29632843 + 216e: 6320 .2byte 0x6320 + 2170: 5f00 .2byte 0x5f00 + 2172: 555f 4e49 5f54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x5f + 2178: 454c .2byte 0x454c + 217a: 5341 .2byte 0x5341 + 217c: 3354 .2byte 0x3354 + 217e: 5f32 .2byte 0x5f32 + 2180: 5954 .2byte 0x5954 + 2182: 4550 .2byte 0x4550 + 2184: 5f5f 6c20 6e6f .byte 0x5f, 0x5f, 0x20, 0x6c, 0x6f, 0x6e + 218a: 6e752067 .4byte 0x6e752067 + 218e: 6e676973 .4byte 0x6e676973 + 2192: 6465 .2byte 0x6465 + 2194: 6920 .2byte 0x6920 + 2196: 746e .2byte 0x746e + 2198: 5f00 .2byte 0x5f00 + 219a: 555f 4e49 4d54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x4d + 21a0: 5841 .2byte 0x5841 + 21a2: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f + 21a8: 205f 6f6c 676e .byte 0x5f, 0x20, 0x6c, 0x6f, 0x6e, 0x67 + 21ae: 6c20 .2byte 0x6c20 + 21b0: 20676e6f jal x28,783b6 <__BSS_END__+0x65c82> + 21b4: 6e75 .2byte 0x6e75 + 21b6: 6e676973 .4byte 0x6e676973 + 21ba: 6465 .2byte 0x6465 + 21bc: 6920 .2byte 0x6920 + 21be: 746e .2byte 0x746e + 21c0: 4900 .2byte 0x4900 + 21c2: 544e .2byte 0x544e + 21c4: 465f 5341 3654 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x36 + 21ca: 5f34 .2byte 0x5f34 + 21cc: 414d .2byte 0x414d + 21ce: 2058 .2byte 0x2058 + 21d0: 5f5f 4e49 5f54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x5f + 21d6: 4146 .2byte 0x4146 + 21d8: 34365453 .4byte 0x34365453 + 21dc: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 21e2: 5f00 .2byte 0x5f00 + 21e4: 635f 7070 655f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x65 + 21ea: 756e .2byte 0x756e + 21ec: 656d .2byte 0x656d + 21ee: 6172 .2byte 0x6172 + 21f0: 6f74 .2byte 0x6f74 + 21f2: 5f72 .2byte 0x5f72 + 21f4: 7461 .2byte 0x7461 + 21f6: 7274 .2byte 0x7274 + 21f8: 6269 .2byte 0x6269 + 21fa: 7475 .2byte 0x7475 + 21fc: 7365 .2byte 0x7365 + 21fe: 3220 .2byte 0x3220 + 2200: 3130 .2byte 0x3130 + 2202: 3134 .2byte 0x3134 + 2204: 4c31 .2byte 0x4c31 + 2206: 5f00 .2byte 0x5f00 + 2208: 535f 4749 415f .byte 0x5f, 0x53, 0x49, 0x47, 0x5f, 0x41 + 220e: 4f54 .2byte 0x4f54 + 2210: 494d .2byte 0x494d + 2212: 49575f43 .4byte 0x49575f43 + 2216: 5444 .2byte 0x5444 + 2218: 5f48 .2byte 0x5f48 + 221a: 205f 3233 5500 .byte 0x5f, 0x20, 0x33, 0x32, 0x00, 0x55 + 2220: 4e49 .2byte 0x4e49 + 2222: 3654 .2byte 0x3654 + 2224: 5f34 .2byte 0x5f34 + 2226: 29632843 .4byte 0x29632843 + 222a: 5f20 .2byte 0x5f20 + 222c: 555f 4e49 3654 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x36 + 2232: 5f34 .2byte 0x5f34 + 2234: 29632843 .4byte 0x29632843 + 2238: 5f00 .2byte 0x5f00 + 223a: 635f 7070 725f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x72 + 2240: 6e75 .2byte 0x6e75 + 2242: 6974 .2byte 0x6974 + 2244: 656d .2byte 0x656d + 2246: 615f 7272 7961 .byte 0x5f, 0x61, 0x72, 0x72, 0x61, 0x79 + 224c: 39312073 .4byte 0x39312073 + 2250: 3738 .2byte 0x3738 + 2252: 3231 .2byte 0x3231 + 2254: 004c .2byte 0x4c + 2256: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f + 225c: 7472 .2byte 0x7472 + 225e: 6974 .2byte 0x6974 + 2260: 3120 .2byte 0x3120 + 2262: 3939 .2byte 0x3939 + 2264: 4c313137 lui x2,0x4c313 + 2268: 5f00 .2byte 0x5f00 + 226a: 535f 5248 5f54 .byte 0x5f, 0x53, 0x48, 0x52, 0x54, 0x5f + 2270: 414d .2byte 0x414d + 2272: 5f58 .2byte 0x5f58 + 2274: 205f 7830 6637 .byte 0x5f, 0x20, 0x30, 0x78, 0x37, 0x66 + 227a: 6666 .2byte 0x6666 + 227c: 5f00 .2byte 0x5f00 + 227e: 635f 7070 6e5f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x6e + 2284: 79746e6f jal x28,4921a <__BSS_END__+0x36ae6> + 2288: 6570 .2byte 0x6570 + 228a: 745f 6d65 6c70 .byte 0x5f, 0x74, 0x65, 0x6d, 0x70, 0x6c + 2290: 7461 .2byte 0x7461 + 2292: 5f65 .2byte 0x5f65 + 2294: 6170 .2byte 0x6170 + 2296: 6172 .2byte 0x6172 + 2298: 656d .2byte 0x656d + 229a: 6574 .2byte 0x6574 + 229c: 5f72 .2byte 0x5f72 + 229e: 7561 .2byte 0x7561 + 22a0: 6f74 .2byte 0x6f74 + 22a2: 3220 .2byte 0x3220 + 22a4: 3130 .2byte 0x3130 + 22a6: 3036 .2byte 0x3036 + 22a8: 4c36 .2byte 0x4c36 + 22aa: 5f00 .2byte 0x5f00 + 22ac: 4f5f 4452 5245 .byte 0x5f, 0x4f, 0x52, 0x44, 0x45, 0x52 + 22b2: 505f 5044 455f .byte 0x5f, 0x50, 0x44, 0x50, 0x5f, 0x45 + 22b8: 444e .2byte 0x444e + 22ba: 4149 .2byte 0x4149 + 22bc: 5f4e .2byte 0x5f4e + 22be: 205f 3433 3231 .byte 0x5f, 0x20, 0x33, 0x34, 0x31, 0x32 + 22c4: 5f00 .2byte 0x5f00 + 22c6: 555f 4e49 5f54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x5f + 22cc: 454c .2byte 0x454c + 22ce: 5341 .2byte 0x5341 + 22d0: 3154 .2byte 0x3154 + 22d2: 5f36 .2byte 0x5f36 + 22d4: 5954 .2byte 0x5954 + 22d6: 4550 .2byte 0x4550 + 22d8: 5f5f 7320 6f68 .byte 0x5f, 0x5f, 0x20, 0x73, 0x68, 0x6f + 22de: 7472 .2byte 0x7472 + 22e0: 7520 .2byte 0x7520 + 22e2: 736e .2byte 0x736e + 22e4: 6769 .2byte 0x6769 + 22e6: 656e .2byte 0x656e + 22e8: 2064 .2byte 0x2064 + 22ea: 6e69 .2byte 0x6e69 + 22ec: 0074 .2byte 0x74 + 22ee: 5f5f 4c46 5f54 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x5f + 22f4: 4544 .2byte 0x4544 + 22f6: 414d4943 .4byte 0x414d4943 + 22fa: 5f4c .2byte 0x5f4c + 22fc: 4944 .2byte 0x4944 + 22fe: 205f5f47 .4byte 0x205f5f47 + 2302: 0039 .2byte 0x39 + 2304: 5f5f 4e49 3354 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x33 + 230a: 5f32 .2byte 0x5f32 + 230c: 414d .2byte 0x414d + 230e: 5f58 .2byte 0x5f58 + 2310: 205f 7830 6637 .byte 0x5f, 0x20, 0x30, 0x78, 0x37, 0x66 + 2316: 6666 .2byte 0x6666 + 2318: 6666 .2byte 0x6666 + 231a: 6666 .2byte 0x6666 + 231c: 004c .2byte 0x4c + 231e: 5f5f 444c 4c42 .byte 0x5f, 0x5f, 0x4c, 0x44, 0x42, 0x4c + 2324: 4d5f 4e49 455f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x45 + 232a: 5058 .2byte 0x5058 + 232c: 5f5f 2820 312d .byte 0x5f, 0x5f, 0x20, 0x28, 0x2d, 0x31 + 2332: 3336 .2byte 0x3336 + 2334: 3138 .2byte 0x3138 + 2336: 0029 .2byte 0x29 + 2338: 5f5f 4957 544e .byte 0x5f, 0x5f, 0x57, 0x49, 0x4e, 0x54 + 233e: 575f 4449 4854 .byte 0x5f, 0x57, 0x49, 0x44, 0x54, 0x48 + 2344: 5f5f 3320 0032 .byte 0x5f, 0x5f, 0x20, 0x33, 0x32, 0x00 + 234a: 5f5f 4c46 3654 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x36 + 2350: 5834 .2byte 0x5834 + 2352: 4d5f 4e49 5f5f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x5f + 2358: 3320 .2byte 0x3320 + 235a: 332e .2byte 0x332e + 235c: 3236 .2byte 0x3236 + 235e: 3031 .2byte 0x3031 + 2360: 33343133 .4byte 0x33343133 + 2364: 3131 .2byte 0x3131 + 2366: 3032 .2byte 0x3032 + 2368: 3339 .2byte 0x3339 + 236a: 3035 .2byte 0x3035 + 236c: 3236 .2byte 0x3236 + 236e: 3236 .2byte 0x3236 + 2370: 3736 .2byte 0x3736 + 2372: 37313837 lui x16,0x37313 + 2376: 37313233 .4byte 0x37313233 + 237a: 3235 .2byte 0x3235 + 237c: 3036 .2byte 0x3036 + 237e: 2d65 .2byte 0x2d65 + 2380: 3934 .2byte 0x3934 + 2382: 36463233 .4byte 0x36463233 + 2386: 7834 .2byte 0x7834 + 2388: 4900 .2byte 0x4900 + 238a: 544e .2byte 0x544e + 238c: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 + 2392: 3436 .2byte 0x3436 + 2394: 4d5f 4e49 2820 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x20, 0x28 + 239a: 492d .2byte 0x492d + 239c: 544e .2byte 0x544e + 239e: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 + 23a4: 3436 .2byte 0x3436 + 23a6: 4d5f 5841 2d20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x2d + 23ac: 3120 .2byte 0x3120 + 23ae: 0029 .2byte 0x29 + 23b0: 4e49 .2byte 0x4e49 + 23b2: 3154 .2byte 0x3154 + 23b4: 5f36 .2byte 0x5f36 + 23b6: 494d .2byte 0x494d + 23b8: 004e .2byte 0x4e + 23ba: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 + 23c0: 5450 .2byte 0x5450 + 23c2: 5f52 .2byte 0x5f52 + 23c4: 414d .2byte 0x414d + 23c6: 5f58 .2byte 0x5f58 + 23c8: 205f 7830 6666 .byte 0x5f, 0x20, 0x30, 0x78, 0x66, 0x66 + 23ce: 6666 .2byte 0x6666 + 23d0: 6666 .2byte 0x6666 + 23d2: 6666 .2byte 0x6666 + 23d4: 0055 .2byte 0x55 + 23d6: 5f5f 4c46 3354 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x33 + 23dc: 5f32 .2byte 0x5f32 + 23de: 5045 .2byte 0x5045 + 23e0: 4f4c4953 .4byte 0x4f4c4953 + 23e4: 5f4e .2byte 0x5f4e + 23e6: 205f 2e31 3931 .byte 0x5f, 0x20, 0x31, 0x2e, 0x31, 0x39 + 23ec: 3032 .2byte 0x3032 + 23ee: 3239 .2byte 0x3239 + 23f0: 3938 .2byte 0x3938 + 23f2: 3535 .2byte 0x3535 + 23f4: 3730 .2byte 0x3730 + 23f6: 3138 .2byte 0x3138 + 23f8: 3532 .2byte 0x3532 + 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: 3030 .2byte 0x3030 + 2408: 3030 .2byte 0x3030 + 240a: 3030 .2byte 0x3030 + 240c: 6530 .2byte 0x6530 + 240e: 372d .2byte 0x372d + 2410: 3346 .2byte 0x3346 + 2412: 0032 .2byte 0x32 + 2414: 4e49 .2byte 0x4e49 + 2416: 5f54 .2byte 0x5f54 + 2418: 4146 .2byte 0x4146 + 241a: 34365453 .4byte 0x34365453 + 241e: 4d5f 4e49 2820 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x20, 0x28 + 2424: 492d .2byte 0x492d + 2426: 544e .2byte 0x544e + 2428: 465f 5341 3654 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x36 + 242e: 5f34 .2byte 0x5f34 + 2430: 414d .2byte 0x414d + 2432: 2058 .2byte 0x2058 + 2434: 202d .2byte 0x202d + 2436: 2931 .2byte 0x2931 + 2438: 6100 .2byte 0x6100 + 243a: 6c6c .2byte 0x6c6c + 243c: 5f00636f jal x6,8a2c + 2440: 475f 5858 415f .byte 0x5f, 0x47, 0x58, 0x58, 0x5f, 0x41 + 2446: 4942 .2byte 0x4942 + 2448: 565f 5245 4953 .byte 0x5f, 0x56, 0x45, 0x52, 0x53, 0x49 + 244e: 31204e4f .4byte 0x31204e4f + 2452: 3130 .2byte 0x3130 + 2454: 4e490037 lui x0,0x4e490 + 2458: 3854 .2byte 0x3854 + 245a: 435f 6328 2029 .byte 0x5f, 0x43, 0x28, 0x63, 0x29, 0x20 + 2460: 5f5f 4e49 3854 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x38 + 2466: 435f 6328 0029 .byte 0x5f, 0x43, 0x28, 0x63, 0x29, 0x00 + 246c: 5f5f 4e49 3354 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x33 + 2472: 5f32 .2byte 0x5f32 + 2474: 5954 .2byte 0x5954 + 2476: 4550 .2byte 0x4550 + 2478: 5f5f 6c20 6e6f .byte 0x5f, 0x5f, 0x20, 0x6c, 0x6f, 0x6e + 247e: 6e692067 .4byte 0x6e692067 + 2482: 0074 .2byte 0x74 + 2484: 5f5f 4c46 3354 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x33 + 248a: 5832 .2byte 0x5832 + 248c: 4d5f 4e49 315f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x31 + 2492: 5f30 .2byte 0x5f30 + 2494: 5845 .2byte 0x5845 + 2496: 5f50 .2byte 0x5f50 + 2498: 205f 2d28 3033 .byte 0x5f, 0x20, 0x28, 0x2d, 0x33, 0x30 + 249e: 49002937 lui x18,0x49002 + 24a2: 544e .2byte 0x544e + 24a4: 3436 .2byte 0x3436 + 24a6: 435f 6328 2029 .byte 0x5f, 0x43, 0x28, 0x63, 0x29, 0x20 + 24ac: 5f5f 4e49 3654 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x36 + 24b2: 5f34 .2byte 0x5f34 + 24b4: 29632843 .4byte 0x29632843 + 24b8: 5f00 .2byte 0x5f00 + 24ba: 635f 7070 615f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x61 + 24c0: 65726767 .4byte 0x65726767 + 24c4: 65746167 .4byte 0x65746167 + 24c8: 625f 7361 7365 .byte 0x5f, 0x62, 0x61, 0x73, 0x65, 0x73 + 24ce: 3220 .2byte 0x3220 + 24d0: 3130 .2byte 0x3130 + 24d2: 3036 .2byte 0x3036 + 24d4: 5f004c33 .4byte 0x5f004c33 + 24d8: 475f 554e 5f47 .byte 0x5f, 0x47, 0x4e, 0x55, 0x47, 0x5f + 24de: 205f 3231 5f00 .byte 0x5f, 0x20, 0x31, 0x32, 0x00, 0x5f + 24e4: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 + 24ea: 5f58 .2byte 0x5f58 + 24ec: 414d .2byte 0x414d + 24ee: 5f58 .2byte 0x5f58 + 24f0: 3031 .2byte 0x3031 + 24f2: 455f 5058 5f5f .byte 0x5f, 0x45, 0x58, 0x50, 0x5f, 0x5f + 24f8: 3420 .2byte 0x3420 + 24fa: 3339 .2byte 0x3339 + 24fc: 0032 .2byte 0x32 + 24fe: 5f5f 4e49 4d54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x4d + 2504: 5841 .2byte 0x5841 + 2506: 435f 6328 2029 .byte 0x5f, 0x43, 0x28, 0x63, 0x29, 0x20 + 250c: 23232063 .4byte 0x23232063 + 2510: 4c20 .2byte 0x4c20 + 2512: 004c .2byte 0x4c + 2514: 5f5f 4c46 3354 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x33 + 251a: 5832 .2byte 0x5832 + 251c: 4d5f 4e49 455f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x45 + 2522: 5058 .2byte 0x5058 + 2524: 5f5f 2820 312d .byte 0x5f, 0x5f, 0x20, 0x28, 0x2d, 0x31 + 252a: 3230 .2byte 0x3230 + 252c: 2931 .2byte 0x2931 + 252e: 5500 .2byte 0x5500 + 2530: 4e49 .2byte 0x4e49 + 2532: 5f54 .2byte 0x5f54 + 2534: 4146 .2byte 0x4146 + 2536: 34365453 .4byte 0x34365453 + 253a: 4d5f 5841 4900 .byte 0x5f, 0x4d, 0x41, 0x58, 0x00, 0x49 + 2540: 544e .2byte 0x544e + 2542: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 + 2548: 3436 .2byte 0x3436 + 254a: 4d5f 5841 5f20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x5f + 2550: 495f 544e 4c5f .byte 0x5f, 0x49, 0x4e, 0x54, 0x5f, 0x4c + 2556: 4145 .2byte 0x4145 + 2558: 34365453 .4byte 0x34365453 + 255c: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 2562: 5f00 .2byte 0x5f00 + 2564: 555f 4e49 5f54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x5f + 256a: 454c .2byte 0x454c + 256c: 5341 .2byte 0x5341 + 256e: 3354 .2byte 0x3354 + 2570: 5f32 .2byte 0x5f32 + 2572: 414d .2byte 0x414d + 2574: 5f58 .2byte 0x5f58 + 2576: 205f 7830 6666 .byte 0x5f, 0x20, 0x30, 0x78, 0x66, 0x66 + 257c: 6666 .2byte 0x6666 + 257e: 6666 .2byte 0x6666 + 2580: 6666 .2byte 0x6666 + 2582: 4c55 .2byte 0x4c55 + 2584: 5000 .2byte 0x5000 + 2586: 5254 .2byte 0x5254 + 2588: 4944 .2byte 0x4944 + 258a: 4646 .2byte 0x4646 + 258c: 4d5f 5841 5f20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x5f + 2592: 505f 5254 4944 .byte 0x5f, 0x50, 0x54, 0x52, 0x44, 0x49 + 2598: 4646 .2byte 0x4646 + 259a: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 25a0: 5f00 .2byte 0x5f00 + 25a2: 4c5f 4244 5f4c .byte 0x5f, 0x4c, 0x44, 0x42, 0x4c, 0x5f + 25a8: 4148 .2byte 0x4148 + 25aa: 55515f53 .4byte 0x55515f53 + 25ae: 4549 .2byte 0x4549 + 25b0: 5f54 .2byte 0x5f54 + 25b2: 414e .2byte 0x414e + 25b4: 5f4e .2byte 0x5f4e + 25b6: 205f 0031 5f5f .byte 0x5f, 0x20, 0x31, 0x00, 0x5f, 0x5f + 25bc: 4e49 .2byte 0x4e49 + 25be: 3854 .2byte 0x3854 + 25c0: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f + 25c6: 205f 6973 6e67 .byte 0x5f, 0x20, 0x73, 0x69, 0x67, 0x6e + 25cc: 6465 .2byte 0x6465 + 25ce: 6320 .2byte 0x6320 + 25d0: 6168 .2byte 0x6168 + 25d2: 0072 .2byte 0x72 + 25d4: 5f5f 4957 544e .byte 0x5f, 0x5f, 0x57, 0x49, 0x4e, 0x54 + 25da: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 25e0: 3020 .2byte 0x3020 + 25e2: 6678 .2byte 0x6678 + 25e4: 6666 .2byte 0x6666 + 25e6: 6666 .2byte 0x6666 + 25e8: 6666 .2byte 0x6666 + 25ea: 5566 .2byte 0x5566 + 25ec: 5500 .2byte 0x5500 + 25ee: 4e49 .2byte 0x4e49 + 25f0: 4d54 .2byte 0x4d54 + 25f2: 5841 .2byte 0x5841 + 25f4: 4d5f 5841 5f00 .byte 0x5f, 0x4d, 0x41, 0x58, 0x00, 0x5f + 25fa: 445f 4345 455f .byte 0x5f, 0x44, 0x45, 0x43, 0x5f, 0x45 + 2600: 4156 .2byte 0x4156 + 2602: 5f4c .2byte 0x5f4c + 2604: 454d .2byte 0x454d + 2606: 4854 .2byte 0x4854 + 2608: 5f5f444f .4byte 0x5f5f444f + 260c: 3220 .2byte 0x3220 + 260e: 5f00 .2byte 0x5f00 + 2610: 555f 4e49 5f54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x5f + 2616: 4146 .2byte 0x4146 + 2618: 34365453 .4byte 0x34365453 + 261c: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 2622: 3020 .2byte 0x3020 + 2624: 6678 .2byte 0x6678 + 2626: 6666 .2byte 0x6666 + 2628: 6666 .2byte 0x6666 + 262a: 6666 .2byte 0x6666 + 262c: 6666 .2byte 0x6666 + 262e: 6666 .2byte 0x6666 + 2630: 6666 .2byte 0x6666 + 2632: 6666 .2byte 0x6666 + 2634: 5566 .2byte 0x5566 + 2636: 4c4c .2byte 0x4c4c + 2638: 5f00 .2byte 0x5f00 + 263a: 555f 4e49 5f54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x5f + 2640: 4146 .2byte 0x4146 + 2642: 32335453 .4byte 0x32335453 + 2646: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 264c: 3020 .2byte 0x3020 + 264e: 6678 .2byte 0x6678 + 2650: 6666 .2byte 0x6666 + 2652: 6666 .2byte 0x6666 + 2654: 6666 .2byte 0x6666 + 2656: 5566 .2byte 0x5566 + 2658: 5f00 .2byte 0x5f00 + 265a: 635f 7070 695f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x69 + 2660: 5f66 .2byte 0x5f66 + 2662: 736e6f63 bltu x28,x22,2da0 + 2666: 6574 .2byte 0x6574 + 2668: 7078 .2byte 0x7078 + 266a: 2072 .2byte 0x2072 + 266c: 3032 .2byte 0x3032 + 266e: 3631 .2byte 0x3631 + 2670: 3630 .2byte 0x3630 + 2672: 004c .2byte 0x4c + 2674: 5f5f 4e49 3654 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x36 + 267a: 5f34 .2byte 0x5f34 + 267c: 29632843 .4byte 0x29632843 + 2680: 6320 .2byte 0x6320 + 2682: 2320 .2byte 0x2320 + 2684: 4c4c2023 sw x4,1216(x24) + 2688: 5f00 .2byte 0x5f00 + 268a: 465f 544c 3231 .byte 0x5f, 0x46, 0x4c, 0x54, 0x31, 0x32 + 2690: 5f38 .2byte 0x5f38 + 2692: 5045 .2byte 0x5045 + 2694: 4f4c4953 .4byte 0x4f4c4953 + 2698: 5f4e .2byte 0x5f4e + 269a: 205f 2e31 3239 .byte 0x5f, 0x20, 0x31, 0x2e, 0x39, 0x32 + 26a0: 3935 .2byte 0x3935 + 26a2: 3932 .2byte 0x3932 + 26a4: 3439 .2byte 0x3439 + 26a6: 3334 .2byte 0x3334 + 26a8: 3738 .2byte 0x3738 + 26aa: 3332 .2byte 0x3332 + 26ac: 3835 .2byte 0x3835 + 26ae: 3335 .2byte 0x3335 + 26b0: 3530 .2byte 0x3530 + 26b2: 3935 .2byte 0x3935 + 26b4: 34393737 lui x14,0x34393 + 26b8: 3532 .2byte 0x3532 + 26ba: 3438 .2byte 0x3438 + 26bc: 3239 .2byte 0x3239 + 26be: 65323337 lui x6,0x65323 + 26c2: 332d .2byte 0x332d + 26c4: 4634 .2byte 0x4634 + 26c6: 3231 .2byte 0x3231 + 26c8: 0038 .2byte 0x38 + 26ca: 5f5f 6972 6373 .byte 0x5f, 0x5f, 0x72, 0x69, 0x73, 0x63 + 26d0: 5f76 .2byte 0x5f76 + 26d2: 2069 .2byte 0x2069 + 26d4: 3032 .2byte 0x3032 + 26d6: 3130 .2byte 0x3130 + 26d8: 3030 .2byte 0x3030 + 26da: 0030 .2byte 0x30 + 26dc: 4955 .2byte 0x4955 + 26de: 544e .2byte 0x544e + 26e0: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 + 26e6: 3631 .2byte 0x3631 + 26e8: 4d5f 5841 5f00 .byte 0x5f, 0x4d, 0x41, 0x58, 0x00, 0x5f + 26ee: 445f 4c42 4d5f .byte 0x5f, 0x44, 0x42, 0x4c, 0x5f, 0x4d + 26f4: 4e49 .2byte 0x4e49 + 26f6: 5f5f 6420 756f .byte 0x5f, 0x5f, 0x20, 0x64, 0x6f, 0x75 + 26fc: 6c62 .2byte 0x6c62 + 26fe: 2865 .2byte 0x2865 + 2700: 2e32 .2byte 0x2e32 + 2702: 3232 .2byte 0x3232 + 2704: 3035 .2byte 0x3035 + 2706: 35383337 lui x6,0x35383 + 270a: 3538 .2byte 0x3538 + 270c: 3730 .2byte 0x3730 + 270e: 3032 .2byte 0x3032 + 2710: 3331 .2byte 0x3331 + 2712: 3338 .2byte 0x3338 + 2714: 3930 .2byte 0x3930 + 2716: 3230 .2byte 0x3230 + 2718: 31373233 .4byte 0x31373233 + 271c: 32333337 lui x6,0x32333 + 2720: 3034 .2byte 0x3034 + 2722: 3034 .2byte 0x3034 + 2724: 6536 .2byte 0x6536 + 2726: 332d .2byte 0x332d + 2728: 3830 .2byte 0x3830 + 272a: 294c .2byte 0x294c + 272c: 5f00 .2byte 0x5f00 + 272e: 535f 5a49 4f45 .byte 0x5f, 0x53, 0x49, 0x5a, 0x45, 0x4f + 2734: 5f46 .2byte 0x5f46 + 2736: 4f4c .2byte 0x4f4c + 2738: 474e .2byte 0x474e + 273a: 4c5f 4e4f 5f47 .byte 0x5f, 0x4c, 0x4f, 0x4e, 0x47, 0x5f + 2740: 205f 0038 4953 .byte 0x5f, 0x20, 0x38, 0x00, 0x53, 0x49 + 2746: 54415f47 .4byte 0x54415f47 + 274a: 43494d4f .4byte 0x43494d4f + 274e: 4d5f 4e49 5f00 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x00, 0x5f + 2754: 555f 4e49 3854 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x38 + 275a: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f + 2760: 205f 6e75 6973 .byte 0x5f, 0x20, 0x75, 0x6e, 0x73, 0x69 + 2766: 64656e67 .4byte 0x64656e67 + 276a: 6320 .2byte 0x6320 + 276c: 6168 .2byte 0x6168 + 276e: 0072 .2byte 0x72 + 2770: 5f5f 4853 5452 .byte 0x5f, 0x5f, 0x53, 0x48, 0x52, 0x54 + 2776: 575f 4449 4854 .byte 0x5f, 0x57, 0x49, 0x44, 0x54, 0x48 + 277c: 5f5f 3120 0036 .byte 0x5f, 0x5f, 0x20, 0x31, 0x36, 0x00 + 2782: 4955 .2byte 0x4955 + 2784: 544e .2byte 0x544e + 2786: 4d5f3233 .4byte 0x4d5f3233 + 278a: 5841 .2byte 0x5841 + 278c: 4900 .2byte 0x4900 + 278e: 544e .2byte 0x544e + 2790: 4d5f3233 .4byte 0x4d5f3233 + 2794: 5841 .2byte 0x5841 + 2796: 5f20 .2byte 0x5f20 + 2798: 495f 544e 3233 .byte 0x5f, 0x49, 0x4e, 0x54, 0x33, 0x32 + 279e: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 27a4: 5f00 .2byte 0x5f00 + 27a6: 465f 544c 3436 .byte 0x5f, 0x46, 0x4c, 0x54, 0x36, 0x34 + 27ac: 4e5f 524f 5f4d .byte 0x5f, 0x4e, 0x4f, 0x52, 0x4d, 0x5f + 27b2: 414d .2byte 0x414d + 27b4: 5f58 .2byte 0x5f58 + 27b6: 205f 2e31 3937 .byte 0x5f, 0x20, 0x31, 0x2e, 0x37, 0x39 + 27bc: 33393637 lui x12,0x33393 + 27c0: 3331 .2byte 0x3331 + 27c2: 3834 .2byte 0x3834 + 27c4: 3236 .2byte 0x3236 + 27c6: 37353133 .4byte 0x37353133 + 27ca: 3830 .2byte 0x3830 + 27cc: 3431 .2byte 0x3431 + 27ce: 3235 .2byte 0x3235 + 27d0: 33323437 lui x8,0x33323 + 27d4: 37313337 lui x6,0x37313 + 27d8: 3430 .2byte 0x3430 + 27da: 65373533 .4byte 0x65373533 + 27de: 3830332b .4byte 0x3830332b + 27e2: 3646 .2byte 0x3646 + 27e4: 0034 .2byte 0x34 + 27e6: 5f5f 4e49 5f54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x5f + 27ec: 454c .2byte 0x454c + 27ee: 5341 .2byte 0x5341 + 27f0: 3654 .2byte 0x3654 + 27f2: 5f34 .2byte 0x5f34 + 27f4: 5954 .2byte 0x5954 + 27f6: 4550 .2byte 0x4550 + 27f8: 5f5f 6c20 6e6f .byte 0x5f, 0x5f, 0x20, 0x6c, 0x6f, 0x6e + 27fe: 6f6c2067 .4byte 0x6f6c2067 + 2802: 676e .2byte 0x676e + 2804: 6920 .2byte 0x6920 + 2806: 746e .2byte 0x746e + 2808: 5f00 .2byte 0x5f00 + 280a: 555f 4e49 3354 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x33 + 2810: 5f32 .2byte 0x5f32 + 2812: 5954 .2byte 0x5954 + 2814: 4550 .2byte 0x4550 + 2816: 5f5f 6c20 6e6f .byte 0x5f, 0x5f, 0x20, 0x6c, 0x6f, 0x6e + 281c: 6e752067 .4byte 0x6e752067 + 2820: 6e676973 .4byte 0x6e676973 + 2824: 6465 .2byte 0x6465 + 2826: 6920 .2byte 0x6920 + 2828: 746e .2byte 0x746e + 282a: 4900 .2byte 0x4900 + 282c: 544e .2byte 0x544e + 282e: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 + 2834: 4d5f3233 .4byte 0x4d5f3233 + 2838: 4e49 .2byte 0x4e49 + 283a: 2820 .2byte 0x2820 + 283c: 492d .2byte 0x492d + 283e: 544e .2byte 0x544e + 2840: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 + 2846: 4d5f3233 .4byte 0x4d5f3233 + 284a: 5841 .2byte 0x5841 + 284c: 2d20 .2byte 0x2d20 + 284e: 3120 .2byte 0x3120 + 2850: 0029 .2byte 0x29 + 2852: 5f5f 4953 455a .byte 0x5f, 0x5f, 0x53, 0x49, 0x5a, 0x45 + 2858: 505f464f .4byte 0x505f464f + 285c: 544e494f .4byte 0x544e494f + 2860: 5245 .2byte 0x5245 + 2862: 5f5f 3420 5700 .byte 0x5f, 0x5f, 0x20, 0x34, 0x00, 0x57 + 2868: 52414843 .4byte 0x52414843 + 286c: 4d5f 5841 5f20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x5f + 2872: 575f 4843 5241 .byte 0x5f, 0x57, 0x43, 0x48, 0x41, 0x52 + 2878: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 287e: 5500 .2byte 0x5500 + 2880: 4e49 .2byte 0x4e49 + 2882: 3154 .2byte 0x3154 + 2884: 5f36 .2byte 0x5f36 + 2886: 414d .2byte 0x414d + 2888: 2058 .2byte 0x2058 + 288a: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 + 2890: 3631 .2byte 0x3631 + 2892: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 2898: 5f00 .2byte 0x5f00 + 289a: 635f 7070 695f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x69 + 28a0: 696e .2byte 0x696e + 28a2: 6974 .2byte 0x6974 + 28a4: 6c61 .2byte 0x6c61 + 28a6: 7a69 .2byte 0x7a69 + 28a8: 7265 .2byte 0x7265 + 28aa: 6c5f 7369 7374 .byte 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x73 + 28b0: 3220 .2byte 0x3220 + 28b2: 3030 .2byte 0x3030 + 28b4: 3038 .2byte 0x3038 + 28b6: 4c36 .2byte 0x4c36 + 28b8: 5f00 .2byte 0x5f00 + 28ba: 575f 4843 5241 .byte 0x5f, 0x57, 0x43, 0x48, 0x41, 0x52 + 28c0: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 28c6: 3020 .2byte 0x3020 + 28c8: 3778 .2byte 0x3778 + 28ca: 6666 .2byte 0x6666 + 28cc: 6666 .2byte 0x6666 + 28ce: 6666 .2byte 0x6666 + 28d0: 0066 .2byte 0x66 + 28d2: 5f5f 4c46 5f54 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x5f + 28d8: 4544 .2byte 0x4544 + 28da: 4f4e .2byte 0x4f4e + 28dc: 4d52 .2byte 0x4d52 + 28de: 4d5f 4e49 5f5f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x5f + 28e4: 3120 .2byte 0x3120 + 28e6: 342e .2byte 0x342e + 28e8: 3130 .2byte 0x3130 + 28ea: 3932 .2byte 0x3932 + 28ec: 3438 .2byte 0x3438 + 28ee: 3436 .2byte 0x3436 + 28f0: 38343233 .4byte 0x38343233 + 28f4: 3731 .2byte 0x3731 + 28f6: 3730 .2byte 0x3730 + 28f8: 3930 .2byte 0x3930 + 28fa: 3332 .2byte 0x3332 + 28fc: 35393237 lui x4,0x35393 + 2900: 3338 .2byte 0x3338 + 2902: 3832 .2byte 0x3832 + 2904: 3939 .2byte 0x3939 + 2906: 3631 .2byte 0x3631 + 2908: 3331 .2byte 0x3331 + 290a: 2d65 .2byte 0x2d65 + 290c: 3534 .2byte 0x3534 + 290e: 0046 .2byte 0x46 + 2910: 5f5f 4e49 5f54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x5f + 2916: 54444957 .4byte 0x54444957 + 291a: 5f48 .2byte 0x5f48 + 291c: 205f 3233 5f00 .byte 0x5f, 0x20, 0x33, 0x32, 0x00, 0x5f + 2922: 465f 544c 3231 .byte 0x5f, 0x46, 0x4c, 0x54, 0x31, 0x32 + 2928: 5f38 .2byte 0x5f38 + 292a: 4544 .2byte 0x4544 + 292c: 414d4943 .4byte 0x414d4943 + 2930: 5f4c .2byte 0x5f4c + 2932: 4944 .2byte 0x4944 + 2934: 205f5f47 .4byte 0x205f5f47 + 2938: 5f003633 .4byte 0x5f003633 + 293c: 555f 4e49 3654 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x36 + 2942: 5f34 .2byte 0x5f34 + 2944: 29632843 .4byte 0x29632843 + 2948: 6320 .2byte 0x6320 + 294a: 2320 .2byte 0x2320 + 294c: 4c552023 sw x5,1216(x10) # 333934c0 <__BSS_END__+0x33380d8c> + 2950: 004c .2byte 0x4c + 2952: 5f5f 4544 4943 .byte 0x5f, 0x5f, 0x44, 0x45, 0x43, 0x49 + 2958: 414d .2byte 0x414d + 295a: 5f4c .2byte 0x5f4c + 295c: 4944 .2byte 0x4944 + 295e: 205f5f47 .4byte 0x205f5f47 + 2962: 6d003633 .4byte 0x6d003633 + 2966: 6961 .2byte 0x6961 + 2968: 006e .2byte 0x6e + 296a: 5f5f 6972 6373 .byte 0x5f, 0x5f, 0x72, 0x69, 0x73, 0x63 + 2970: 5f76 .2byte 0x5f76 + 2972: 6c66 .2byte 0x6c66 + 2974: 5f74616f jal x2,4976a <__BSS_END__+0x37036> + 2978: 6261 .2byte 0x6261 + 297a: 5f69 .2byte 0x5f69 + 297c: 74666f73 .4byte 0x74666f73 + 2980: 3120 .2byte 0x3120 + 2982: 5f00 .2byte 0x5f00 + 2984: 475f 4343 415f .byte 0x5f, 0x47, 0x43, 0x43, 0x5f, 0x41 + 298a: 4f54 .2byte 0x4f54 + 298c: 494d .2byte 0x494d + 298e: 4f505f43 .4byte 0x4f505f43 + 2992: 4e49 .2byte 0x4e49 + 2994: 4554 .2byte 0x4554 + 2996: 5f52 .2byte 0x5f52 + 2998: 4f4c .2byte 0x4f4c + 299a: 465f4b43 .4byte 0x465f4b43 + 299e: 4552 .2byte 0x4552 + 29a0: 2045 .2byte 0x2045 + 29a2: 0031 .2byte 0x31 + 29a4: 5f5f 5355 5245 .byte 0x5f, 0x5f, 0x55, 0x53, 0x45, 0x52 + 29aa: 4c5f 4241 4c45 .byte 0x5f, 0x4c, 0x41, 0x42, 0x45, 0x4c + 29b0: 505f 4552 4946 .byte 0x5f, 0x50, 0x52, 0x45, 0x46, 0x49 + 29b6: 5f58 .2byte 0x5f58 + 29b8: 205f 5f00 475f .byte 0x5f, 0x20, 0x00, 0x5f, 0x5f, 0x47 + 29be: 415f4343 .4byte 0x415f4343 + 29c2: 4f54 .2byte 0x4f54 + 29c4: 494d .2byte 0x494d + 29c6: 48435f43 .4byte 0x48435f43 + 29ca: 5241 .2byte 0x5241 + 29cc: 545f3233 .4byte 0x545f3233 + 29d0: 4c5f 434f 5f4b .byte 0x5f, 0x4c, 0x4f, 0x43, 0x4b, 0x5f + 29d6: 5246 .2byte 0x5246 + 29d8: 4545 .2byte 0x4545 + 29da: 3120 .2byte 0x3120 + 29dc: 5500 .2byte 0x5500 + 29de: 4e49 .2byte 0x4e49 + 29e0: 4d54 .2byte 0x4d54 + 29e2: 5841 .2byte 0x5841 + 29e4: 435f 6328 2029 .byte 0x5f, 0x43, 0x28, 0x63, 0x29, 0x20 + 29ea: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 + 29f0: 414d .2byte 0x414d + 29f2: 5f58 .2byte 0x5f58 + 29f4: 29632843 .4byte 0x29632843 + 29f8: 5f00 .2byte 0x5f00 + 29fa: 555f 4e49 4d54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x4d + 2a00: 5841 .2byte 0x5841 + 2a02: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 2a08: 3020 .2byte 0x3020 + 2a0a: 6678 .2byte 0x6678 + 2a0c: 6666 .2byte 0x6666 + 2a0e: 6666 .2byte 0x6666 + 2a10: 6666 .2byte 0x6666 + 2a12: 6666 .2byte 0x6666 + 2a14: 6666 .2byte 0x6666 + 2a16: 6666 .2byte 0x6666 + 2a18: 6666 .2byte 0x6666 + 2a1a: 5566 .2byte 0x5566 + 2a1c: 4c4c .2byte 0x4c4c + 2a1e: 5f00 .2byte 0x5f00 + 2a20: 635f 7070 645f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x64 + 2a26: 6769 .2byte 0x6769 + 2a28: 7469 .2byte 0x7469 + 2a2a: 735f 7065 7261 .byte 0x5f, 0x73, 0x65, 0x70, 0x61, 0x72 + 2a30: 7461 .2byte 0x7461 + 2a32: 2073726f jal x4,3a438 <__BSS_END__+0x27d04> + 2a36: 3032 .2byte 0x3032 + 2a38: 3331 .2byte 0x3331 + 2a3a: 3930 .2byte 0x3930 + 2a3c: 004c .2byte 0x4c + 2a3e: 5f5f 5453 4344 .byte 0x5f, 0x5f, 0x53, 0x54, 0x44, 0x43 + 2a44: 485f 534f 4554 .byte 0x5f, 0x48, 0x4f, 0x53, 0x54, 0x45 + 2a4a: 5f44 .2byte 0x5f44 + 2a4c: 205f 0030 7977 .byte 0x5f, 0x20, 0x30, 0x00, 0x77, 0x79 + 2a52: 696e .2byte 0x696e + 2a54: 5f5f006b .4byte 0x5f5f006b + 2a58: 4e49 .2byte 0x4e49 + 2a5a: 5054 .2byte 0x5054 + 2a5c: 5254 .2byte 0x5254 + 2a5e: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 2a64: 3020 .2byte 0x3020 + 2a66: 3778 .2byte 0x3778 + 2a68: 6666 .2byte 0x6666 + 2a6a: 6666 .2byte 0x6666 + 2a6c: 6666 .2byte 0x6666 + 2a6e: 0066 .2byte 0x66 + 2a70: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f + 2a76: 6874 .2byte 0x6874 + 2a78: 6572 .2byte 0x6572 + 2a7a: 6461 .2byte 0x6461 + 2a7c: 65666173 .4byte 0x65666173 + 2a80: 735f 6174 6974 .byte 0x5f, 0x73, 0x74, 0x61, 0x74, 0x69 + 2a86: 6e695f63 bge x18,x6,3184 + 2a8a: 7469 .2byte 0x7469 + 2a8c: 3220 .2byte 0x3220 + 2a8e: 3030 .2byte 0x3030 + 2a90: 3038 .2byte 0x3038 + 2a92: 4c36 .2byte 0x4c36 + 2a94: 5f00 .2byte 0x5f00 + 2a96: 635f 7070 6e5f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x6e + 2a9c: 6d61 .2byte 0x6d61 + 2a9e: 7365 .2byte 0x7365 + 2aa0: 6170 .2byte 0x6170 + 2aa2: 615f6563 bltu x30,x21,30ac + 2aa6: 7474 .2byte 0x7474 + 2aa8: 6972 .2byte 0x6972 + 2aaa: 7562 .2byte 0x7562 + 2aac: 6574 .2byte 0x6574 + 2aae: 30322073 .4byte 0x30322073 + 2ab2: 3431 .2byte 0x3431 + 2ab4: 3131 .2byte 0x3131 + 2ab6: 004c .2byte 0x4c + 2ab8: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f + 2abe: 75727473 .4byte 0x75727473 + 2ac2: 72757463 bgeu x10,x7,31ea + 2ac6: 6465 .2byte 0x6465 + 2ac8: 625f 6e69 6964 .byte 0x5f, 0x62, 0x69, 0x6e, 0x64, 0x69 + 2ace: 676e .2byte 0x676e + 2ad0: 30322073 .4byte 0x30322073 + 2ad4: 3631 .2byte 0x3631 + 2ad6: 3630 .2byte 0x3630 + 2ad8: 004c .2byte 0x4c + 2ada: 5f5f 4347 5f43 .byte 0x5f, 0x5f, 0x47, 0x43, 0x43, 0x5f + 2ae0: 5441 .2byte 0x5441 + 2ae2: 43494d4f .4byte 0x43494d4f + 2ae6: 4c5f 4f4c 474e .byte 0x5f, 0x4c, 0x4c, 0x4f, 0x4e, 0x47 + 2aec: 4c5f 434f 5f4b .byte 0x5f, 0x4c, 0x4f, 0x43, 0x4b, 0x5f + 2af2: 5246 .2byte 0x5246 + 2af4: 4545 .2byte 0x4545 + 2af6: 3120 .2byte 0x3120 + 2af8: 5f00 .2byte 0x5f00 + 2afa: 465f 544c 4d5f .byte 0x5f, 0x46, 0x4c, 0x54, 0x5f, 0x4d + 2b00: 5841 .2byte 0x5841 + 2b02: 455f 5058 5f5f .byte 0x5f, 0x45, 0x58, 0x50, 0x5f, 0x5f + 2b08: 3120 .2byte 0x3120 + 2b0a: 3832 .2byte 0x3832 + 2b0c: 5f00 .2byte 0x5f00 + 2b0e: 415f 4f54 494d .byte 0x5f, 0x41, 0x54, 0x4f, 0x4d, 0x49 + 2b14: 43415f43 .4byte 0x43415f43 + 2b18: 5f51 .2byte 0x5f51 + 2b1a: 4552 .2byte 0x4552 + 2b1c: 204c .2byte 0x204c + 2b1e: 0034 .2byte 0x34 + 2b20: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 + 2b26: 465f 5341 3654 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x36 + 2b2c: 5f34 .2byte 0x5f34 + 2b2e: 5954 .2byte 0x5954 + 2b30: 4550 .2byte 0x4550 + 2b32: 5f5f 6c20 6e6f .byte 0x5f, 0x5f, 0x20, 0x6c, 0x6f, 0x6e + 2b38: 6f6c2067 .4byte 0x6f6c2067 + 2b3c: 676e .2byte 0x676e + 2b3e: 7520 .2byte 0x7520 + 2b40: 736e .2byte 0x736e + 2b42: 6769 .2byte 0x6769 + 2b44: 656e .2byte 0x656e + 2b46: 2064 .2byte 0x2064 + 2b48: 6e69 .2byte 0x6e69 + 2b4a: 0074 .2byte 0x74 + 2b4c: 41484357 .4byte 0x41484357 + 2b50: 5f52 .2byte 0x5f52 + 2b52: 414d .2byte 0x414d + 2b54: 0058 .2byte 0x58 + 2b56: 4e49 .2byte 0x4e49 + 2b58: 3354 .2byte 0x3354 + 2b5a: 5f32 .2byte 0x5f32 + 2b5c: 494d .2byte 0x494d + 2b5e: 004e .2byte 0x4e + 2b60: 5f5f 4c46 5f54 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x5f + 2b66: 494d .2byte 0x494d + 2b68: 5f4e .2byte 0x5f4e + 2b6a: 205f 2e31 3731 .byte 0x5f, 0x20, 0x31, 0x2e, 0x31, 0x37 + 2b70: 3435 .2byte 0x3435 + 2b72: 3439 .2byte 0x3439 + 2b74: 38303533 .4byte 0x38303533 + 2b78: 3232 .2byte 0x3232 + 2b7a: 3832 .2byte 0x3832 + 2b7c: 37303537 lui x10,0x37303 + 2b80: 3639 .2byte 0x3639 + 2b82: 3738 .2byte 0x3738 + 2b84: 33353633 .4byte 0x33353633 + 2b88: 32323237 lui x4,0x32323 + 2b8c: 3432 .2byte 0x3432 + 2b8e: 3635 .2byte 0x3635 + 2b90: 6538 .2byte 0x6538 + 2b92: 332d .2byte 0x332d + 2b94: 4638 .2byte 0x4638 + 2b96: 5500 .2byte 0x5500 + 2b98: 4e49 .2byte 0x4e49 + 2b9a: 5f54 .2byte 0x5f54 + 2b9c: 4146 .2byte 0x4146 + 2b9e: 5f385453 .4byte 0x5f385453 + 2ba2: 414d .2byte 0x414d + 2ba4: 2058 .2byte 0x2058 + 2ba6: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 + 2bac: 465f 5341 3854 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x38 + 2bb2: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 2bb8: 5f00 .2byte 0x5f00 + 2bba: 495f 544e 5450 .byte 0x5f, 0x49, 0x4e, 0x54, 0x50, 0x54 + 2bc0: 5f52 .2byte 0x5f52 + 2bc2: 5954 .2byte 0x5954 + 2bc4: 4550 .2byte 0x4550 + 2bc6: 5f5f 6920 746e .byte 0x5f, 0x5f, 0x20, 0x69, 0x6e, 0x74 + 2bcc: 5f00 .2byte 0x5f00 + 2bce: 365a .2byte 0x365a + 2bd0: 6c727473 .4byte 0x6c727473 + 2bd4: 6e65 .2byte 0x6e65 + 2bd6: 4b50 .2byte 0x4b50 + 2bd8: 5f5f0063 beq x30,x21,31b8 + 2bdc: 756c7063 bgeu x24,x22,331c + 2be0: 756c7073 .4byte 0x756c7073 + 2be4: 30322073 .4byte 0x30322073 + 2be8: 3731 .2byte 0x3731 + 2bea: 3330 .2byte 0x3330 + 2bec: 004c .2byte 0x4c + 2bee: 5f5f 444c 4c42 .byte 0x5f, 0x5f, 0x4c, 0x44, 0x42, 0x4c + 2bf4: 445f 4345 4d49 .byte 0x5f, 0x44, 0x45, 0x43, 0x49, 0x4d + 2bfa: 4c41 .2byte 0x4c41 + 2bfc: 445f 4749 5f5f .byte 0x5f, 0x44, 0x49, 0x47, 0x5f, 0x5f + 2c02: 3320 .2byte 0x3320 + 2c04: 0036 .2byte 0x36 + 2c06: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f + 2c0c: 6e69 .2byte 0x6e69 + 2c0e: 6568 .2byte 0x6568 + 2c10: 6972 .2byte 0x6972 + 2c12: 6974 .2byte 0x6974 + 2c14: 676e .2byte 0x676e + 2c16: 635f 6e6f 7473 .byte 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74 + 2c1c: 7572 .2byte 0x7572 + 2c1e: 726f7463 bgeu x30,x6,3346 + 2c22: 30322073 .4byte 0x30322073 + 2c26: 3531 .2byte 0x3531 + 2c28: 3131 .2byte 0x3131 + 2c2a: 004c .2byte 0x4c + 2c2c: 5f5f 4e49 5f54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x5f + 2c32: 454c .2byte 0x454c + 2c34: 5341 .2byte 0x5341 + 2c36: 3354 .2byte 0x3354 + 2c38: 5f32 .2byte 0x5f32 + 2c3a: 54444957 .4byte 0x54444957 + 2c3e: 5f48 .2byte 0x5f48 + 2c40: 205f 3233 5f00 .byte 0x5f, 0x20, 0x33, 0x32, 0x00, 0x5f + 2c46: 475f 554e 5f43 .byte 0x5f, 0x47, 0x4e, 0x55, 0x43, 0x5f + 2c4c: 45444957 .4byte 0x45444957 + 2c50: 455f 4558 5543 .byte 0x5f, 0x45, 0x58, 0x45, 0x43, 0x55 + 2c56: 4954 .2byte 0x4954 + 2c58: 435f4e4f .4byte 0x435f4e4f + 2c5c: 4148 .2byte 0x4148 + 2c5e: 5352 .2byte 0x5352 + 2c60: 5445 .2byte 0x5445 + 2c62: 4e5f 4d41 2045 .byte 0x5f, 0x4e, 0x41, 0x4d, 0x45, 0x20 + 2c68: 5522 .2byte 0x5522 + 2c6a: 4654 .2byte 0x4654 + 2c6c: 332d .2byte 0x332d + 2c6e: 4c32 .2byte 0x4c32 + 2c70: 2245 .2byte 0x2245 + 2c72: 5f00 .2byte 0x5f00 + 2c74: 555f 4e49 5f54 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x5f + 2c7a: 4146 .2byte 0x4146 + 2c7c: 32335453 .4byte 0x32335453 + 2c80: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f + 2c86: 205f 6e75 6973 .byte 0x5f, 0x20, 0x75, 0x6e, 0x73, 0x69 + 2c8c: 64656e67 .4byte 0x64656e67 + 2c90: 6920 .2byte 0x6920 + 2c92: 746e .2byte 0x746e + 2c94: 5f00 .2byte 0x5f00 + 2c96: 575f 4e49 5f54 .byte 0x5f, 0x57, 0x49, 0x4e, 0x54, 0x5f + 2c9c: 5954 .2byte 0x5954 + 2c9e: 4550 .2byte 0x4550 + 2ca0: 5f5f 7520 736e .byte 0x5f, 0x5f, 0x20, 0x75, 0x6e, 0x73 + 2ca6: 6769 .2byte 0x6769 + 2ca8: 656e .2byte 0x656e + 2caa: 2064 .2byte 0x2064 + 2cac: 6e69 .2byte 0x6e69 + 2cae: 0074 .2byte 0x74 + 2cb0: 5f5f 4953 455a .byte 0x5f, 0x5f, 0x53, 0x49, 0x5a, 0x45 + 2cb6: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f + 2cbc: 205f 6e75 6973 .byte 0x5f, 0x20, 0x75, 0x6e, 0x73, 0x69 + 2cc2: 64656e67 .4byte 0x64656e67 + 2cc6: 6920 .2byte 0x6920 + 2cc8: 746e .2byte 0x746e + 2cca: 5700 .2byte 0x5700 + 2ccc: 52414843 .4byte 0x52414843 + 2cd0: 4d5f 4e49 5f20 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x20, 0x5f + 2cd6: 575f 4843 5241 .byte 0x5f, 0x57, 0x43, 0x48, 0x41, 0x52 + 2cdc: 4d5f 4e49 5f5f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x5f + 2ce2: 5f00 .2byte 0x5f00 + 2ce4: 635f 7070 6c5f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x6c + 2cea: 6d61 .2byte 0x6d61 + 2cec: 6462 .2byte 0x6462 + 2cee: 7361 .2byte 0x7361 + 2cf0: 3220 .2byte 0x3220 + 2cf2: 3030 .2byte 0x3030 + 2cf4: 3039 .2byte 0x3039 + 2cf6: 5f004c37 lui x24,0x5f004 + 2cfa: 475f 4343 415f .byte 0x5f, 0x47, 0x43, 0x43, 0x5f, 0x41 + 2d00: 4f54 .2byte 0x4f54 + 2d02: 494d .2byte 0x494d + 2d04: 48535f43 .4byte 0x48535f43 + 2d08: 5f54524f .4byte 0x5f54524f + 2d0c: 4f4c .2byte 0x4f4c + 2d0e: 465f4b43 .4byte 0x465f4b43 + 2d12: 4552 .2byte 0x4552 + 2d14: 2045 .2byte 0x2045 + 2d16: 0031 .2byte 0x31 + 2d18: 5f5f 4244 5f4c .byte 0x5f, 0x5f, 0x44, 0x42, 0x4c, 0x5f + 2d1e: 5045 .2byte 0x5045 + 2d20: 4f4c4953 .4byte 0x4f4c4953 + 2d24: 5f4e .2byte 0x5f4e + 2d26: 205f 6f64 6275 .byte 0x5f, 0x20, 0x64, 0x6f, 0x75, 0x62 + 2d2c: 656c .2byte 0x656c + 2d2e: 3228 .2byte 0x3228 + 2d30: 322e .2byte 0x322e + 2d32: 3032 .2byte 0x3032 + 2d34: 3434 .2byte 0x3434 + 2d36: 3036 .2byte 0x3036 + 2d38: 3934 .2byte 0x3934 + 2d3a: 3532 .2byte 0x3532 + 2d3c: 3330 .2byte 0x3330 + 2d3e: 3331 .2byte 0x3331 + 2d40: 3830 .2byte 0x3830 + 2d42: 3830 .2byte 0x3830 + 2d44: 3734 .2byte 0x3734 + 2d46: 3632 .2byte 0x3632 + 2d48: 36333333 .4byte 0x36333333 + 2d4c: 3831 .2byte 0x3831 + 2d4e: 3631 .2byte 0x3631 + 2d50: 3034 .2byte 0x3034 + 2d52: 3236 .2byte 0x3236 + 2d54: 2d65 .2byte 0x2d65 + 2d56: 3631 .2byte 0x3631 + 2d58: 294c .2byte 0x294c + 2d5a: 5f00 .2byte 0x5f00 + 2d5c: 635f 7070 745f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x74 + 2d62: 6d65 .2byte 0x6d65 + 2d64: 6c70 .2byte 0x6c70 + 2d66: 7461 .2byte 0x7461 + 2d68: 5f65 .2byte 0x5f65 + 2d6a: 6574 .2byte 0x6574 + 2d6c: 706d .2byte 0x706d + 2d6e: 616c .2byte 0x616c + 2d70: 6574 .2byte 0x6574 + 2d72: 615f 6772 2073 .byte 0x5f, 0x61, 0x72, 0x67, 0x73, 0x20 + 2d78: 3032 .2byte 0x3032 + 2d7a: 3631 .2byte 0x3631 + 2d7c: 3131 .2byte 0x3131 + 2d7e: 004c .2byte 0x4c + 2d80: 5f5f 4c46 5f54 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x5f + 2d86: 5045 .2byte 0x5045 + 2d88: 4f4c4953 .4byte 0x4f4c4953 + 2d8c: 5f4e .2byte 0x5f4e + 2d8e: 205f 2e31 3931 .byte 0x5f, 0x20, 0x31, 0x2e, 0x31, 0x39 + 2d94: 3032 .2byte 0x3032 + 2d96: 3239 .2byte 0x3239 + 2d98: 3938 .2byte 0x3938 + 2d9a: 3535 .2byte 0x3535 + 2d9c: 3730 .2byte 0x3730 + 2d9e: 3138 .2byte 0x3138 + 2da0: 3532 .2byte 0x3532 + 2da2: 3030 .2byte 0x3030 + 2da4: 3030 .2byte 0x3030 + 2da6: 3030 .2byte 0x3030 + 2da8: 3030 .2byte 0x3030 + 2daa: 3030 .2byte 0x3030 + 2dac: 3030 .2byte 0x3030 + 2dae: 3030 .2byte 0x3030 + 2db0: 3030 .2byte 0x3030 + 2db2: 3030 .2byte 0x3030 + 2db4: 6530 .2byte 0x6530 + 2db6: 372d .2byte 0x372d + 2db8: 0046 .2byte 0x46 + 2dba: 5f5f 4c46 3654 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x36 + 2dc0: 5f34 .2byte 0x5f34 + 2dc2: 494d .2byte 0x494d + 2dc4: 5f4e .2byte 0x5f4e + 2dc6: 5845 .2byte 0x5845 + 2dc8: 5f50 .2byte 0x5f50 + 2dca: 205f 2d28 3031 .byte 0x5f, 0x20, 0x28, 0x2d, 0x31, 0x30 + 2dd0: 3132 .2byte 0x3132 + 2dd2: 0029 .2byte 0x29 + 2dd4: 4955 .2byte 0x4955 + 2dd6: 544e .2byte 0x544e + 2dd8: 5f38 .2byte 0x5f38 + 2dda: 5f5f0043 .4byte 0x5f5f0043 + 2dde: 4c46 .2byte 0x4c46 + 2de0: 5f54 .2byte 0x5f54 + 2de2: 5645 .2byte 0x5645 + 2de4: 4c41 .2byte 0x4c41 + 2de6: 4d5f 5445 4f48 .byte 0x5f, 0x4d, 0x45, 0x54, 0x48, 0x4f + 2dec: 5f44 .2byte 0x5f44 + 2dee: 5354 .2byte 0x5354 + 2df0: 315f 3638 3136 .byte 0x5f, 0x31, 0x38, 0x36, 0x36, 0x31 + 2df6: 335f 5f5f 3020 .byte 0x5f, 0x33, 0x5f, 0x5f, 0x20, 0x30 + 2dfc: 5f00 .2byte 0x5f00 + 2dfe: 445f 4c42 485f .byte 0x5f, 0x44, 0x42, 0x4c, 0x5f, 0x48 + 2e04: 5341 .2byte 0x5341 + 2e06: 495f 464e 4e49 .byte 0x5f, 0x49, 0x4e, 0x46, 0x49, 0x4e + 2e0c: 5449 .2byte 0x5449 + 2e0e: 5f59 .2byte 0x5f59 + 2e10: 205f 0031 4953 .byte 0x5f, 0x20, 0x31, 0x00, 0x53, 0x49 + 2e16: 54415f47 .4byte 0x54415f47 + 2e1a: 43494d4f .4byte 0x43494d4f + 2e1e: 4d5f 5841 5f20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x5f + 2e24: 535f 4749 415f .byte 0x5f, 0x53, 0x49, 0x47, 0x5f, 0x41 + 2e2a: 4f54 .2byte 0x4f54 + 2e2c: 494d .2byte 0x494d + 2e2e: 414d5f43 .4byte 0x414d5f43 + 2e32: 5f58 .2byte 0x5f58 + 2e34: 005f 5f5f 5847 .byte 0x5f, 0x00, 0x5f, 0x5f, 0x47, 0x58 + 2e3a: 5f58 .2byte 0x5f58 + 2e3c: 5452 .2byte 0x5452 + 2e3e: 4954 .2byte 0x4954 + 2e40: 3120 .2byte 0x3120 + 2e42: 5f00 .2byte 0x5f00 + 2e44: 465f 544c 485f .byte 0x5f, 0x46, 0x4c, 0x54, 0x5f, 0x48 + 2e4a: 5341 .2byte 0x5341 + 2e4c: 515f 4955 5445 .byte 0x5f, 0x51, 0x55, 0x49, 0x45, 0x54 + 2e52: 4e5f 4e41 5f5f .byte 0x5f, 0x4e, 0x41, 0x4e, 0x5f, 0x5f + 2e58: 3120 .2byte 0x3120 + 2e5a: 5f00 .2byte 0x5f00 + 2e5c: 475f 4343 435f .byte 0x5f, 0x47, 0x43, 0x43, 0x5f, 0x43 + 2e62: 54534e4f .4byte 0x54534e4f + 2e66: 5552 .2byte 0x5552 + 2e68: 56495443 .4byte 0x56495443 + 2e6c: 5f45 .2byte 0x5f45 + 2e6e: 455a4953 .4byte 0x455a4953 + 2e72: 3320 .2byte 0x3320 + 2e74: 0032 .2byte 0x32 + 2e76: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f + 2e7c: 6761 .2byte 0x6761 + 2e7e: 67657267 .4byte 0x67657267 + 2e82: 7461 .2byte 0x7461 + 2e84: 5f65 .2byte 0x5f65 + 2e86: 736e .2byte 0x736e + 2e88: 6d64 .2byte 0x6d64 + 2e8a: 2069 .2byte 0x2069 + 2e8c: 3032 .2byte 0x3032 + 2e8e: 3331 .2byte 0x3331 + 2e90: 3430 .2byte 0x3430 + 2e92: 004c .2byte 0x4c + 2e94: 5f5f 4e49 4d54 .byte 0x5f, 0x5f, 0x49, 0x4e, 0x54, 0x4d + 2e9a: 5841 .2byte 0x5841 + 2e9c: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f + 2ea2: 205f 6f6c 676e .byte 0x5f, 0x20, 0x6c, 0x6f, 0x6e, 0x67 + 2ea8: 6c20 .2byte 0x6c20 + 2eaa: 20676e6f jal x28,790b0 <__BSS_END__+0x6697c> + 2eae: 6e69 .2byte 0x6e69 + 2eb0: 0074 .2byte 0x74 + 2eb2: 5f5f 6972 6373 .byte 0x5f, 0x5f, 0x72, 0x69, 0x73, 0x63 + 2eb8: 2076 .2byte 0x2076 + 2eba: 0031 .2byte 0x31 + 2ebc: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f + 2ec2: 6564 .2byte 0x6564 + 2ec4: 656c .2byte 0x656c + 2ec6: 69746167 .4byte 0x69746167 + 2eca: 676e .2byte 0x676e + 2ecc: 635f 6e6f 7473 .byte 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74 + 2ed2: 7572 .2byte 0x7572 + 2ed4: 726f7463 bgeu x30,x6,35fc + 2ed8: 30322073 .4byte 0x30322073 + 2edc: 3630 .2byte 0x3630 + 2ede: 3430 .2byte 0x3430 + 2ee0: 004c .2byte 0x4c + 2ee2: 4e49 .2byte 0x4e49 + 2ee4: 5f54 .2byte 0x5f54 + 2ee6: 4146 .2byte 0x4146 + 2ee8: 32335453 .4byte 0x32335453 + 2eec: 4d5f 4e49 2820 .byte 0x5f, 0x4d, 0x49, 0x4e, 0x20, 0x28 + 2ef2: 492d .2byte 0x492d + 2ef4: 544e .2byte 0x544e + 2ef6: 465f 5341 3354 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x33 + 2efc: 5f32 .2byte 0x5f32 + 2efe: 414d .2byte 0x414d + 2f00: 2058 .2byte 0x2058 + 2f02: 202d .2byte 0x202d + 2f04: 2931 .2byte 0x2931 + 2f06: 5700 .2byte 0x5700 + 2f08: 4e49 .2byte 0x4e49 + 2f0a: 5f54 .2byte 0x5f54 + 2f0c: 494d .2byte 0x494d + 2f0e: 004e .2byte 0x4e + 2f10: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f + 2f16: 7375 .2byte 0x7375 + 2f18: 7265 .2byte 0x7265 + 2f1a: 645f 6665 6e69 .byte 0x5f, 0x64, 0x65, 0x66, 0x69, 0x6e + 2f20: 6465 .2byte 0x6465 + 2f22: 6c5f 7469 7265 .byte 0x5f, 0x6c, 0x69, 0x74, 0x65, 0x72 + 2f28: 6c61 .2byte 0x6c61 + 2f2a: 30322073 .4byte 0x30322073 + 2f2e: 3830 .2byte 0x3830 + 2f30: 3930 .2byte 0x3930 + 2f32: 004c .2byte 0x4c + 2f34: 4955 .2byte 0x4955 + 2f36: 544e .2byte 0x544e + 2f38: 465f 5341 3154 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x31 + 2f3e: 5f36 .2byte 0x5f36 + 2f40: 414d .2byte 0x414d + 2f42: 2058 .2byte 0x2058 + 2f44: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 + 2f4a: 465f 5341 3154 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x31 + 2f50: 5f36 .2byte 0x5f36 + 2f52: 414d .2byte 0x414d + 2f54: 5f58 .2byte 0x5f58 + 2f56: 005f 4e49 3854 .byte 0x5f, 0x00, 0x49, 0x4e, 0x54, 0x38 + 2f5c: 4d5f 5841 5f20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x5f + 2f62: 495f 544e 5f38 .byte 0x5f, 0x49, 0x4e, 0x54, 0x38, 0x5f + 2f68: 414d .2byte 0x414d + 2f6a: 5f58 .2byte 0x5f58 + 2f6c: 005f 5f5f 4955 .byte 0x5f, 0x00, 0x5f, 0x5f, 0x55, 0x49 + 2f72: 544e .2byte 0x544e + 2f74: 3436 .2byte 0x3436 + 2f76: 545f 5059 5f45 .byte 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f + 2f7c: 205f 6f6c 676e .byte 0x5f, 0x20, 0x6c, 0x6f, 0x6e, 0x67 + 2f82: 6c20 .2byte 0x6c20 + 2f84: 20676e6f jal x28,7918a <__BSS_END__+0x66a56> + 2f88: 6e75 .2byte 0x6e75 + 2f8a: 6e676973 .4byte 0x6e676973 + 2f8e: 6465 .2byte 0x6465 + 2f90: 6920 .2byte 0x6920 + 2f92: 746e .2byte 0x746e + 2f94: 5f00 .2byte 0x5f00 + 2f96: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 + 2f9c: 5f58 .2byte 0x5f58 + 2f9e: 4148 .2byte 0x4148 + 2fa0: 55515f53 .4byte 0x55515f53 + 2fa4: 4549 .2byte 0x4549 + 2fa6: 5f54 .2byte 0x5f54 + 2fa8: 414e .2byte 0x414e + 2faa: 5f4e .2byte 0x5f4e + 2fac: 205f 0031 5f5f .byte 0x5f, 0x20, 0x31, 0x00, 0x5f, 0x5f + 2fb2: 4244 .2byte 0x4244 + 2fb4: 5f4c .2byte 0x5f4c + 2fb6: 414d .2byte 0x414d + 2fb8: 5f58 .2byte 0x5f58 + 2fba: 3031 .2byte 0x3031 + 2fbc: 455f 5058 5f5f .byte 0x5f, 0x45, 0x58, 0x50, 0x5f, 0x5f + 2fc2: 3320 .2byte 0x3320 + 2fc4: 3830 .2byte 0x3830 + 2fc6: 5500 .2byte 0x5500 + 2fc8: 4e49 .2byte 0x4e49 + 2fca: 3354 .2byte 0x3354 + 2fcc: 5f32 .2byte 0x5f32 + 2fce: 414d .2byte 0x414d + 2fd0: 2058 .2byte 0x2058 + 2fd2: 5f5f 4955 544e .byte 0x5f, 0x5f, 0x55, 0x49, 0x4e, 0x54 + 2fd8: 4d5f3233 .4byte 0x4d5f3233 + 2fdc: 5841 .2byte 0x5841 + 2fde: 5f5f 5f00 495f .byte 0x5f, 0x5f, 0x00, 0x5f, 0x5f, 0x49 + 2fe4: 544e .2byte 0x544e + 2fe6: 465f 5341 3354 .byte 0x5f, 0x46, 0x41, 0x53, 0x54, 0x33 + 2fec: 5f32 .2byte 0x5f32 + 2fee: 5954 .2byte 0x5954 + 2ff0: 4550 .2byte 0x4550 + 2ff2: 5f5f 6920 746e .byte 0x5f, 0x5f, 0x20, 0x69, 0x6e, 0x74 + 2ff8: 5f00 .2byte 0x5f00 + 2ffa: 635f 7070 635f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x63 + 3000: 7061 .2byte 0x7061 + 3002: 7574 .2byte 0x7574 + 3004: 6572 .2byte 0x6572 + 3006: 735f 6174 5f72 .byte 0x5f, 0x73, 0x74, 0x61, 0x72, 0x5f + 300c: 6874 .2byte 0x6874 + 300e: 7369 .2byte 0x7369 + 3010: 3220 .2byte 0x3220 + 3012: 3130 .2byte 0x3130 + 3014: 3036 .2byte 0x3036 + 3016: 5f004c33 .4byte 0x5f004c33 + 301a: 635f 7070 755f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x75 + 3020: 696e .2byte 0x696e + 3022: 65646f63 bltu x8,x22,3680 + 3026: 635f 6168 6172 .byte 0x5f, 0x63, 0x68, 0x61, 0x72, 0x61 + 302c: 72657463 bgeu x10,x6,3754 + 3030: 30322073 .4byte 0x30322073 + 3034: 3431 .2byte 0x3431 + 3036: 3131 .2byte 0x3131 + 3038: 004c .2byte 0x4c + 303a: 5f5f 4942 4747 .byte 0x5f, 0x5f, 0x42, 0x49, 0x47, 0x47 + 3040: 5345 .2byte 0x5345 + 3042: 5f54 .2byte 0x5f54 + 3044: 4c41 .2byte 0x4c41 + 3046: 4749 .2byte 0x4749 + 3048: 4d4e .2byte 0x4d4e + 304a: 4e45 .2byte 0x4e45 + 304c: 5f54 .2byte 0x5f54 + 304e: 205f 3631 5f00 .byte 0x5f, 0x20, 0x31, 0x36, 0x00, 0x5f + 3054: 465f 544c 3231 .byte 0x5f, 0x46, 0x4c, 0x54, 0x31, 0x32 + 305a: 5f38 .2byte 0x5f38 + 305c: 4544 .2byte 0x4544 + 305e: 4f4e .2byte 0x4f4e + 3060: 4d52 .2byte 0x4d52 + 3062: 4d5f 4e49 5f5f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x5f + 3068: 3620 .2byte 0x3620 + 306a: 342e .2byte 0x342e + 306c: 37313537 lui x10,0x37313 + 3070: 3135 .2byte 0x3135 + 3072: 3931 .2byte 0x3931 + 3074: 3334 .2byte 0x3334 + 3076: 3038 .2byte 0x3038 + 3078: 3532 .2byte 0x3532 + 307a: 3131 .2byte 0x3131 + 307c: 3930 .2byte 0x3930 + 307e: 3432 .2byte 0x3432 + 3080: 3334 .2byte 0x3334 + 3082: 3938 .2byte 0x3938 + 3084: 3835 .2byte 0x3835 + 3086: 3232 .2byte 0x3232 + 3088: 36343637 lui x12,0x36343 + 308c: 3535 .2byte 0x3535 + 308e: 2d65 .2byte 0x2d65 + 3090: 3934 .2byte 0x3934 + 3092: 3636 .2byte 0x3636 + 3094: 3146 .2byte 0x3146 + 3096: 3832 .2byte 0x3832 + 3098: 4900 .2byte 0x4900 + 309a: 544e .2byte 0x544e + 309c: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 + 30a2: 4d5f3233 .4byte 0x4d5f3233 + 30a6: 4e49 .2byte 0x4e49 + 30a8: 4900 .2byte 0x4900 + 30aa: 544e .2byte 0x544e + 30ac: 3631 .2byte 0x3631 + 30ae: 4d5f 5841 5f20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x5f + 30b4: 495f 544e 3631 .byte 0x5f, 0x49, 0x4e, 0x54, 0x31, 0x36 + 30ba: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 30c0: 5f00 .2byte 0x5f00 + 30c2: 495f 544e 465f .byte 0x5f, 0x49, 0x4e, 0x54, 0x5f, 0x46 + 30c8: 5341 .2byte 0x5341 + 30ca: 3854 .2byte 0x3854 + 30cc: 575f 4449 4854 .byte 0x5f, 0x57, 0x49, 0x44, 0x54, 0x48 + 30d2: 5f5f 3320 0032 .byte 0x5f, 0x5f, 0x20, 0x33, 0x32, 0x00 + 30d8: 5f5f 4c46 5f54 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x5f + 30de: 494d .2byte 0x494d + 30e0: 5f4e .2byte 0x5f4e + 30e2: 5845 .2byte 0x5845 + 30e4: 5f50 .2byte 0x5f50 + 30e6: 205f 2d28 3231 .byte 0x5f, 0x20, 0x28, 0x2d, 0x31, 0x32 + 30ec: 2935 .2byte 0x2935 + 30ee: 5f00 .2byte 0x5f00 + 30f0: 475f 4343 415f .byte 0x5f, 0x47, 0x43, 0x43, 0x5f, 0x41 + 30f6: 4f54 .2byte 0x4f54 + 30f8: 494d .2byte 0x494d + 30fa: 4f425f43 .4byte 0x4f425f43 + 30fe: 4c5f4c4f .4byte 0x4c5f4c4f + 3102: 5f4b434f .4byte 0x5f4b434f + 3106: 5246 .2byte 0x5246 + 3108: 4545 .2byte 0x4545 + 310a: 3120 .2byte 0x3120 + 310c: 5f00 .2byte 0x5f00 + 310e: 465f 544c 3231 .byte 0x5f, 0x46, 0x4c, 0x54, 0x31, 0x32 + 3114: 5f38 .2byte 0x5f38 + 3116: 4f4e .2byte 0x4f4e + 3118: 4d52 .2byte 0x4d52 + 311a: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 3120: 3120 .2byte 0x3120 + 3122: 312e .2byte 0x312e + 3124: 3938 .2byte 0x3938 + 3126: 34313337 lui x6,0x34313 + 312a: 3539 .2byte 0x3539 + 312c: 32373533 .4byte 0x32373533 + 3130: 36373133 .4byte 0x36373133 + 3134: 3035 .2byte 0x3035 + 3136: 3538 .2byte 0x3538 + 3138: 33393537 lui x10,0x33393 + 313c: 3632 .2byte 0x3632 + 313e: 3236 .2byte 0x3236 + 3140: 3038 .2byte 0x3038 + 3142: 3730 .2byte 0x3730 + 3144: 3230 .2byte 0x3230 + 3146: 2b65 .2byte 0x2b65 + 3148: 3934 .2byte 0x3934 + 314a: 31463233 .4byte 0x31463233 + 314e: 3832 .2byte 0x3832 + 3150: 5f00 .2byte 0x5f00 + 3152: 455f 464c 5f5f .byte 0x5f, 0x45, 0x4c, 0x46, 0x5f, 0x5f + 3158: 3120 .2byte 0x3120 + 315a: 5500 .2byte 0x5500 + 315c: 4e49 .2byte 0x4e49 + 315e: 3154 .2byte 0x3154 + 3160: 5f36 .2byte 0x5f36 + 3162: 5f5f0043 .4byte 0x5f5f0043 + 3166: 4e49 .2byte 0x4e49 + 3168: 3354 .2byte 0x3354 + 316a: 5f32 .2byte 0x5f32 + 316c: 29632843 .4byte 0x29632843 + 3170: 6320 .2byte 0x6320 + 3172: 2320 .2byte 0x2320 + 3174: 004c2023 sw x4,0(x24) # 5f004000 <__BSS_END__+0x5eff18cc> + 3178: 4e49 .2byte 0x4e49 + 317a: 3654 .2byte 0x3654 + 317c: 5f34 .2byte 0x5f34 + 317e: 494d .2byte 0x494d + 3180: 004e .2byte 0x4e + 3182: 5f5f 4c46 3654 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x36 + 3188: 5834 .2byte 0x5834 + 318a: 445f 4345 4d49 .byte 0x5f, 0x44, 0x45, 0x43, 0x49, 0x4d + 3190: 4c41 .2byte 0x4c41 + 3192: 445f 4749 5f5f .byte 0x5f, 0x44, 0x49, 0x47, 0x5f, 0x5f + 3198: 3320 .2byte 0x3320 + 319a: 0036 .2byte 0x36 + 319c: 5f5f 4c46 3354 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x33 + 31a2: 5832 .2byte 0x5832 + 31a4: 4d5f 5841 315f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x31 + 31aa: 5f30 .2byte 0x5f30 + 31ac: 5845 .2byte 0x5845 + 31ae: 5f50 .2byte 0x5f50 + 31b0: 205f 3033 0038 .byte 0x5f, 0x20, 0x33, 0x30, 0x38, 0x00 + 31b6: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f + 31bc: 6f6e .2byte 0x6f6e + 31be: 746e .2byte 0x746e + 31c0: 7079 .2byte 0x7079 + 31c2: 5f65 .2byte 0x5f65 + 31c4: 6574 .2byte 0x6574 + 31c6: 706d .2byte 0x706d + 31c8: 616c .2byte 0x616c + 31ca: 6574 .2byte 0x6574 + 31cc: 615f 6772 2073 .byte 0x5f, 0x61, 0x72, 0x67, 0x73, 0x20 + 31d2: 3032 .2byte 0x3032 + 31d4: 3431 .2byte 0x3431 + 31d6: 3131 .2byte 0x3131 + 31d8: 004c .2byte 0x4c + 31da: 5f5f 4244 5f4c .byte 0x5f, 0x5f, 0x44, 0x42, 0x4c, 0x5f + 31e0: 4148 .2byte 0x4148 + 31e2: 45445f53 .4byte 0x45445f53 + 31e6: 4f4e .2byte 0x4f4e + 31e8: 4d52 .2byte 0x4d52 + 31ea: 5f5f 3120 5f00 .byte 0x5f, 0x5f, 0x20, 0x31, 0x00, 0x5f + 31f0: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 + 31f6: 5f58 .2byte 0x5f58 + 31f8: 4f4e .2byte 0x4f4e + 31fa: 4d52 .2byte 0x4d52 + 31fc: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 3202: 3120 .2byte 0x3120 + 3204: 372e .2byte 0x372e + 3206: 3739 .2byte 0x3739 + 3208: 3936 .2byte 0x3936 + 320a: 34333133 .4byte 0x34333133 + 320e: 3638 .2byte 0x3638 + 3210: 3332 .2byte 0x3332 + 3212: 3531 .2byte 0x3531 + 3214: 31383037 lui x0,0x31383 + 3218: 3534 .2byte 0x3534 + 321a: 3732 .2byte 0x3732 + 321c: 3234 .2byte 0x3234 + 321e: 31333733 .4byte 0x31333733 + 3222: 33343037 lui x0,0x33343 + 3226: 3735 .2byte 0x3735 + 3228: 2b65 .2byte 0x2b65 + 322a: 46383033 .4byte 0x46383033 + 322e: 00783233 sltu x4,x16,x7 + 3232: 4955 .2byte 0x4955 + 3234: 544e .2byte 0x544e + 3236: 3436 .2byte 0x3436 + 3238: 4d5f 5841 5f20 .byte 0x5f, 0x4d, 0x41, 0x58, 0x20, 0x5f + 323e: 555f 4e49 3654 .byte 0x5f, 0x55, 0x49, 0x4e, 0x54, 0x36 + 3244: 5f34 .2byte 0x5f34 + 3246: 414d .2byte 0x414d + 3248: 5f58 .2byte 0x5f58 + 324a: 005f 5f5f 7063 .byte 0x5f, 0x00, 0x5f, 0x5f, 0x63, 0x70 + 3250: 5f70 .2byte 0x5f70 + 3252: 6172 .2byte 0x6172 + 3254: 74735f77 .4byte 0x74735f77 + 3258: 6972 .2byte 0x6972 + 325a: 676e .2byte 0x676e + 325c: 30322073 .4byte 0x30322073 + 3260: 3730 .2byte 0x3730 + 3262: 3031 .2byte 0x3031 + 3264: 004c .2byte 0x4c + 3266: 5f5f 4244 5f4c .byte 0x5f, 0x5f, 0x44, 0x42, 0x4c, 0x5f + 326c: 4544 .2byte 0x4544 + 326e: 4f4e .2byte 0x4f4e + 3270: 4d52 .2byte 0x4d52 + 3272: 4d5f 4e49 5f5f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x5f + 3278: 6420 .2byte 0x6420 + 327a: 6c62756f jal x10,2a940 <__BSS_END__+0x1820c> + 327e: 2865 .2byte 0x2865 + 3280: 2e34 .2byte 0x2e34 + 3282: 3439 .2byte 0x3439 + 3284: 3630 .2byte 0x3630 + 3286: 3635 .2byte 0x3635 + 3288: 3534 .2byte 0x3534 + 328a: 3438 .2byte 0x3438 + 328c: 3231 .2byte 0x3231 + 328e: 3634 .2byte 0x3634 + 3290: 3435 .2byte 0x3435 + 3292: 3134 .2byte 0x3134 + 3294: 36353637 lui x12,0x36353 + 3298: 3738 .2byte 0x3738 + 329a: 3239 .2byte 0x3239 + 329c: 3638 .2byte 0x3638 + 329e: 3238 .2byte 0x3238 + 32a0: 3132 .2byte 0x3132 + 32a2: 65323733 .4byte 0x65323733 + 32a6: 332d .2byte 0x332d + 32a8: 3432 .2byte 0x3432 + 32aa: 294c .2byte 0x294c + 32ac: 5f00 .2byte 0x5f00 + 32ae: 465f 544c 3233 .byte 0x5f, 0x46, 0x4c, 0x54, 0x33, 0x32 + 32b4: 4d5f 5841 315f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x31 + 32ba: 5f30 .2byte 0x5f30 + 32bc: 5845 .2byte 0x5845 + 32be: 5f50 .2byte 0x5f50 + 32c0: 205f 3833 5500 .byte 0x5f, 0x20, 0x33, 0x38, 0x00, 0x55 + 32c6: 4e49 .2byte 0x4e49 + 32c8: 5f54 .2byte 0x5f54 + 32ca: 4146 .2byte 0x4146 + 32cc: 36315453 .4byte 0x36315453 + 32d0: 4d5f 5841 5500 .byte 0x5f, 0x4d, 0x41, 0x58, 0x00, 0x55 + 32d6: 4e49 .2byte 0x4e49 + 32d8: 3654 .2byte 0x3654 + 32da: 5f34 .2byte 0x5f34 + 32dc: 414d .2byte 0x414d + 32de: 0058 .2byte 0x58 + 32e0: 5f5f 7063 5f70 .byte 0x5f, 0x5f, 0x63, 0x70, 0x70, 0x5f + 32e6: 74617473 .4byte 0x74617473 + 32ea: 6369 .2byte 0x6369 + 32ec: 615f 7373 7265 .byte 0x5f, 0x61, 0x73, 0x73, 0x65, 0x72 + 32f2: 2074 .2byte 0x2074 + 32f4: 3032 .2byte 0x3032 + 32f6: 3431 .2byte 0x3431 + 32f8: 3131 .2byte 0x3131 + 32fa: 004c .2byte 0x4c + 32fc: 5f5f 4c46 3654 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x36 + 3302: 5f34 .2byte 0x5f34 + 3304: 4544 .2byte 0x4544 + 3306: 4f4e .2byte 0x4f4e + 3308: 4d52 .2byte 0x4d52 + 330a: 4d5f 4e49 5f5f .byte 0x5f, 0x4d, 0x49, 0x4e, 0x5f, 0x5f + 3310: 3420 .2byte 0x3420 + 3312: 392e .2byte 0x392e + 3314: 3034 .2byte 0x3034 + 3316: 3536 .2byte 0x3536 + 3318: 3436 .2byte 0x3436 + 331a: 3835 .2byte 0x3835 + 331c: 3134 .2byte 0x3134 + 331e: 3432 .2byte 0x3432 + 3320: 3536 .2byte 0x3536 + 3322: 3434 .2byte 0x3434 + 3324: 3731 .2byte 0x3731 + 3326: 3536 .2byte 0x3536 + 3328: 3836 .2byte 0x3836 + 332a: 38323937 lui x18,0x38323 + 332e: 3836 .2byte 0x3836 + 3330: 3232 .2byte 0x3232 + 3332: 3331 .2byte 0x3331 + 3334: 2d653237 lui x4,0x2d653 + 3338: 46343233 .4byte 0x46343233 + 333c: 3436 .2byte 0x3436 + 333e: 5f00 .2byte 0x5f00 + 3340: 495f 544e 4c5f .byte 0x5f, 0x49, 0x4e, 0x54, 0x5f, 0x4c + 3346: 4145 .2byte 0x4145 + 3348: 32335453 .4byte 0x32335453 + 334c: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 3352: 3020 .2byte 0x3020 + 3354: 3778 .2byte 0x3778 + 3356: 6666 .2byte 0x6666 + 3358: 6666 .2byte 0x6666 + 335a: 6666 .2byte 0x6666 + 335c: 4c66 .2byte 0x4c66 + 335e: 5f00 .2byte 0x5f00 + 3360: 4c5f 4244 5f4c .byte 0x5f, 0x4c, 0x44, 0x42, 0x4c, 0x5f + 3366: 414d .2byte 0x414d + 3368: 5f58 .2byte 0x5f58 + 336a: 3031 .2byte 0x3031 + 336c: 455f 5058 5f5f .byte 0x5f, 0x45, 0x58, 0x50, 0x5f, 0x5f + 3372: 3420 .2byte 0x3420 + 3374: 3339 .2byte 0x3339 + 3376: 0032 .2byte 0x32 + 3378: 5f5f 4c46 3354 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x33 + 337e: 5f32 .2byte 0x5f32 + 3380: 494d .2byte 0x494d + 3382: 5f4e .2byte 0x5f4e + 3384: 205f 2e31 3731 .byte 0x5f, 0x20, 0x31, 0x2e, 0x31, 0x37 + 338a: 3435 .2byte 0x3435 + 338c: 3439 .2byte 0x3439 + 338e: 38303533 .4byte 0x38303533 + 3392: 3232 .2byte 0x3232 + 3394: 3832 .2byte 0x3832 + 3396: 37303537 lui x10,0x37303 + 339a: 3639 .2byte 0x3639 + 339c: 3738 .2byte 0x3738 + 339e: 33353633 .4byte 0x33353633 + 33a2: 32323237 lui x4,0x32323 + 33a6: 3432 .2byte 0x3432 + 33a8: 3635 .2byte 0x3635 + 33aa: 6538 .2byte 0x6538 + 33ac: 332d .2byte 0x332d + 33ae: 4638 .2byte 0x4638 + 33b0: 5f003233 .4byte 0x5f003233 + 33b4: 505f 4152 4d47 .byte 0x5f, 0x50, 0x52, 0x41, 0x47, 0x4d + 33ba: 5f41 .2byte 0x5f41 + 33bc: 4552 .2byte 0x4552 + 33be: 4544 .2byte 0x4544 + 33c0: 4946 .2byte 0x4946 + 33c2: 454e .2byte 0x454e + 33c4: 455f 5458 414e .byte 0x5f, 0x45, 0x58, 0x54, 0x4e, 0x41 + 33ca: 454d .2byte 0x454d + 33cc: 3120 .2byte 0x3120 + 33ce: 5f00 .2byte 0x5f00 + 33d0: 535f 4749 415f .byte 0x5f, 0x53, 0x49, 0x47, 0x5f, 0x41 + 33d6: 4f54 .2byte 0x4f54 + 33d8: 494d .2byte 0x494d + 33da: 59545f43 .4byte 0x59545f43 + 33de: 4550 .2byte 0x4550 + 33e0: 5f5f 6920 746e .byte 0x5f, 0x5f, 0x20, 0x69, 0x6e, 0x74 + 33e6: 5f00 .2byte 0x5f00 + 33e8: 635f 7070 735f .byte 0x5f, 0x63, 0x70, 0x70, 0x5f, 0x73 + 33ee: 7a69 .2byte 0x7a69 + 33f0: 6465 .2byte 0x6465 + 33f2: 645f 6165 6c6c .byte 0x5f, 0x64, 0x65, 0x61, 0x6c, 0x6c + 33f8: 7461636f jal x6,19b3e <__BSS_END__+0x740a> + 33fc: 6f69 .2byte 0x6f69 + 33fe: 206e .2byte 0x206e + 3400: 3032 .2byte 0x3032 + 3402: 3331 .2byte 0x3331 + 3404: 3930 .2byte 0x3930 + 3406: 004c .2byte 0x4c + 3408: 5f5f 4c46 3154 .byte 0x5f, 0x5f, 0x46, 0x4c, 0x54, 0x31 + 340e: 3832 .2byte 0x3832 + 3410: 485f 5341 445f .byte 0x5f, 0x48, 0x41, 0x53, 0x5f, 0x44 + 3416: 4e45 .2byte 0x4e45 + 3418: 5f4d524f .4byte 0x5f4d524f + 341c: 205f 0031 5f5f .byte 0x5f, 0x20, 0x31, 0x00, 0x5f, 0x5f + 3422: 5f707063 bgeu x0,x23,3a02 + 3426: 6176 .2byte 0x6176 + 3428: 6972 .2byte 0x6972 + 342a: 6461 .2byte 0x6461 + 342c: 6369 .2byte 0x6369 + 342e: 755f 6973 676e .byte 0x5f, 0x75, 0x73, 0x69, 0x6e, 0x67 + 3434: 3220 .2byte 0x3220 + 3436: 3130 .2byte 0x3130 + 3438: 3136 .2byte 0x3136 + 343a: 4c31 .2byte 0x4c31 + 343c: 4900 .2byte 0x4900 + 343e: 544e .2byte 0x544e + 3440: 4c5f 4145 5453 .byte 0x5f, 0x4c, 0x45, 0x41, 0x53, 0x54 + 3446: 4d5f3233 .4byte 0x4d5f3233 + 344a: 5841 .2byte 0x5841 + 344c: 5f20 .2byte 0x5f20 + 344e: 495f 544e 4c5f .byte 0x5f, 0x49, 0x4e, 0x54, 0x5f, 0x4c + 3454: 4145 .2byte 0x4145 + 3456: 32335453 .4byte 0x32335453 + 345a: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 3460: 5f00 .2byte 0x5f00 + 3462: 465f 544c 3231 .byte 0x5f, 0x46, 0x4c, 0x54, 0x31, 0x32 + 3468: 5f38 .2byte 0x5f38 + 346a: 5349 .2byte 0x5349 + 346c: 495f 4345 365f .byte 0x5f, 0x49, 0x45, 0x43, 0x5f, 0x36 + 3472: 3530 .2byte 0x3530 + 3474: 3935 .2byte 0x3935 + 3476: 5f5f 3220 5f00 .byte 0x5f, 0x5f, 0x20, 0x32, 0x00, 0x5f + 347c: 4c5f 4244 5f4c .byte 0x5f, 0x4c, 0x44, 0x42, 0x4c, 0x5f + 3482: 4148 .2byte 0x4148 + 3484: 45445f53 .4byte 0x45445f53 + 3488: 4f4e .2byte 0x4f4e + 348a: 4d52 .2byte 0x4d52 + 348c: 5f5f 3120 5700 .byte 0x5f, 0x5f, 0x20, 0x31, 0x00, 0x57 + 3492: 4e49 .2byte 0x4e49 + 3494: 5f54 .2byte 0x5f54 + 3496: 414d .2byte 0x414d + 3498: 2058 .2byte 0x2058 + 349a: 5f5f 4957 544e .byte 0x5f, 0x5f, 0x57, 0x49, 0x4e, 0x54 + 34a0: 4d5f 5841 5f5f .byte 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x5f + 34a6: 5500 .2byte 0x5500 + 34a8: 4e49 .2byte 0x4e49 + 34aa: 5054 .2byte 0x5054 + 34ac: 5254 .2byte 0x5254 + 34ae: 4d5f 5841 4900 .byte 0x5f, 0x4d, 0x41, 0x58, 0x00, 0x49 + 34b4: 544e .2byte 0x544e + 34b6: 4d5f3233 .4byte 0x4d5f3233 + 34ba: 4e49 .2byte 0x4e49 + 34bc: 2820 .2byte 0x2820 + 34be: 492d .2byte 0x492d + 34c0: 544e .2byte 0x544e + 34c2: 4d5f3233 .4byte 0x4d5f3233 + 34c6: 5841 .2byte 0x5841 + 34c8: 2d20 .2byte 0x2d20 + 34ca: 3120 .2byte 0x3120 + 34cc: 0029 .2byte 0x29 + 34ce: 5f5f 4244 5f4c .byte 0x5f, 0x5f, 0x44, 0x42, 0x4c, 0x5f + 34d4: 4944 .2byte 0x4944 + 34d6: 205f5f47 .4byte 0x205f5f47 + 34da: 3531 .2byte 0x3531 + 34dc: 5f00 .2byte 0x5f00 + 34de: 465f 544c 485f .byte 0x5f, 0x46, 0x4c, 0x54, 0x5f, 0x48 + 34e4: 5341 .2byte 0x5341 + 34e6: 445f 4e45 524f .byte 0x5f, 0x44, 0x45, 0x4e, 0x4f, 0x52 + 34ec: 5f4d .2byte 0x5f4d + 34ee: 205f 0031 5f5f .byte 0x5f, 0x20, 0x31, 0x00, 0x5f, 0x5f + 34f4: 4e49 .2byte 0x4e49 + 34f6: 5f54 .2byte 0x5f54 + 34f8: 4146 .2byte 0x4146 + 34fa: 34365453 .4byte 0x34365453 + 34fe: 575f 4449 4854 .byte 0x5f, 0x57, 0x49, 0x44, 0x54, 0x48 + 3504: 5f5f 3620 0034 .byte 0x5f, 0x5f, 0x20, 0x36, 0x34, 0x00 + 350a: 5f5f 4244 5f4c .byte 0x5f, 0x5f, 0x44, 0x42, 0x4c, 0x5f + 3510: 4544 .2byte 0x4544 + 3512: 414d4943 .4byte 0x414d4943 + 3516: 5f4c .2byte 0x5f4c + 3518: 4944 .2byte 0x4944 + 351a: 205f5f47 .4byte 0x205f5f47 + 351e: 3731 .2byte 0x3731 + 3520: 7300 .2byte 0x7300 + 3522: 6f6c .2byte 0x6f6c + 3524: 6d006f77 .4byte 0x6d006f77 + 3528: 6679 .2byte 0x6679 + 352a: 6e75 .2byte 0x6e75 + 352c: 20485f63 bge x16,x4,374a + 3530: 7500 .2byte 0x7500 + 3532: 6e69 .2byte 0x6e69 + 3534: 3874 .2byte 0x3874 + 3536: 745f 5f00 315a .byte 0x5f, 0x74, 0x00, 0x5f, 0x5a, 0x31 + 353c: 6336 .2byte 0x6336 + 353e: 746e756f jal x10,eac84 <__BSS_END__+0xd8550> + 3542: 635f 6168 6172 .byte 0x5f, 0x63, 0x68, 0x61, 0x72, 0x61 + 3548: 72657463 bgeu x10,x6,3c70 + 354c: 634b5073 .4byte 0x634b5073 + 3550: 505f3053 .4byte 0x505f3053 + 3554: 0068 .2byte 0x68 + 3556: 6c61 .2byte 0x6c61 + 3558: 6166 .2byte 0x6166 + 355a: 6562 .2byte 0x6562 + 355c: 5f74 .2byte 0x5f74 + 355e: 656c .2byte 0x656c + 3560: 676e .2byte 0x676e + 3562: 6874 .2byte 0x6874 + 3564: 6300 .2byte 0x6300 + 3566: 746e756f jal x10,eacac <__BSS_END__+0xd8578> + 356a: 635f 6168 6172 .byte 0x5f, 0x63, 0x68, 0x61, 0x72, 0x61 + 3570: 72657463 bgeu x10,x6,3c98 + 3574: 796d0073 .4byte 0x796d0073 + 3578: 735f 7274 656c .byte 0x5f, 0x73, 0x74, 0x72, 0x6c, 0x65 + 357e: 006e .2byte 0x6e + 3580: 6c61 .2byte 0x6c61 + 3582: 6166 .2byte 0x6166 + 3584: 6562 .2byte 0x6562 + 3586: 0074 .2byte 0x74 + +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+0x14> + 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 + 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 + 3e: 7369 .2byte 0x7369 + 40: 6c2f7663 bgeu x30,x2,70c + 44: 6269 .2byte 0x6269 + 46: 6363672f .4byte 0x6363672f + 4a: 7369722f .4byte 0x7369722f + 4e: 34367663 bgeu x12,x3,39a + 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 + 6c: 0065 .2byte 0x65 + 6e: 69647473 .4byte 0x69647473 + 72: 746e .2byte 0x746e + 74: 682e .2byte 0x682e + 76: 7300 .2byte 0x7300 + 78: 6474 .2byte 0x6474 + 7a: 6e69 .2byte 0x6e69 + 7c: 2d74 .2byte 0x2d74 + 7e: 2e636367 .4byte 0x2e636367 + 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: 8c02 .2byte 0x8c02 + 4: 0000 .2byte 0x0 + 6: 0700 .2byte 0x700 + 8: 002a .2byte 0x2a + a: 0000 .2byte 0x0 + c: 03010003 lb x0,48(x2) # 4c313030 <__BSS_END__+0x4c3008fc> + 10: 0201 .2byte 0x201 + 12: 07030b03 lb x22,112(x6) # 34313070 <__BSS_END__+0x3430093c> + 16: 08b6 .2byte 0x8b6 + 18: 0000 .2byte 0x0 + 1a: 0504 .2byte 0x504 + 1c: bd0d .2byte 0xbd0d + 1e: 001a .2byte 0x1a + 20: 0400 .2byte 0x400 + 22: 1105 .2byte 0x1105 + 24: 000017af .4byte 0x17af + 28: 0004 .2byte 0x4 + 2a: 0005 .2byte 0x5 + 2c: 0500 .2byte 0x500 + 2e: 8e00 .2byte 0x8e00 + 30: 0500001b .4byte 0x500001b + 34: da00 .2byte 0xda00 + 36: 0500002b .4byte 0x500002b + 3a: 2a00 .2byte 0x2a00 + 3c: 001e .2byte 0x1e + 3e: 0500 .2byte 0x500 + 40: 9c00 .2byte 0x9c00 + 42: 0008 .2byte 0x8 + 44: 0500 .2byte 0x500 + 46: 3e00 .2byte 0x3e00 + 48: 002a .2byte 0x2a + 4a: 0500 .2byte 0x500 + 4c: 7800 .2byte 0x7800 + 4e: 000c .2byte 0xc + 50: 0500 .2byte 0x500 + 52: b800 .2byte 0xb800 + 54: 05000003 lb x0,80(x0) # 50 <_Z6strlenPKc+0x8> + 58: e300 .2byte 0xe300 + 5a: 001c .2byte 0x1c + 5c: 0500 .2byte 0x500 + 5e: ed00 .2byte 0xed00 + 60: 0020 .2byte 0x20 + 62: 0500 .2byte 0x500 + 64: 7b00 .2byte 0x7b00 + 66: 0009 .2byte 0x9 + 68: 0500 .2byte 0x500 + 6a: be00 .2byte 0xbe00 + 6c: 0006 .2byte 0x6 + 6e: 0500 .2byte 0x500 + 70: 9300 .2byte 0x9300 + 72: 0020 .2byte 0x20 + 74: 0500 .2byte 0x500 + 76: 0100 .2byte 0x100 + 78: 0006 .2byte 0x6 + 7a: 0500 .2byte 0x500 + 7c: 0d00 .2byte 0xd00 + 7e: 0500002b .4byte 0x500002b + 82: 1100 .2byte 0x1100 + 84: 001a .2byte 0x1a + 86: 0500 .2byte 0x500 + 88: 6700 .2byte 0x6700 + 8a: 05000017 auipc x0,0x5000 + 8e: 4a00 .2byte 0x4a00 + 90: 0016 .2byte 0x16 + 92: 0500 .2byte 0x500 + 94: 9900 .2byte 0x9900 + 96: 0500001b .4byte 0x500001b + 9a: 2d00 .2byte 0x2d00 + 9c: 05000027 .4byte 0x5000027 + a0: e000 .2byte 0xe000 + a2: 0006 .2byte 0x6 + a4: 0500 .2byte 0x500 + a6: 2b00 .2byte 0x2b00 + a8: 0500001b .4byte 0x500001b + ac: cf00 .2byte 0xcf00 + ae: 001c .2byte 0x1c + b0: 0500 .2byte 0x500 + b2: fb00 .2byte 0xfb00 + b4: 000d .2byte 0xd + b6: 0500 .2byte 0x500 + b8: 9400 .2byte 0x9400 + ba: 0004 .2byte 0x4 + bc: 0500 .2byte 0x500 + be: 8300 .2byte 0x8300 + c0: 0018 .2byte 0x18 + c2: 0500 .2byte 0x500 + c4: 3a00 .2byte 0x3a00 + c6: 0030 .2byte 0x30 + c8: 0500 .2byte 0x500 + ca: 4d00 .2byte 0x4d00 + cc: 0500000f fence ow,unknown + d0: 3f00 .2byte 0x3f00 + d2: 0005 .2byte 0x5 + d4: 0500 .2byte 0x500 + d6: ab00 .2byte 0xab00 + d8: 0022 .2byte 0x22 + da: 0500 .2byte 0x500 + dc: 9a00 .2byte 0x9a00 + de: 05000007 .4byte 0x5000007 + e2: b500 .2byte 0xb500 + e4: 001f 0500 5200 .byte 0x1f, 0x00, 0x00, 0x05, 0x00, 0x52 + ea: 0028 .2byte 0x28 + ec: 0500 .2byte 0x500 + ee: 1d00 .2byte 0x1d00 + f0: 0009 .2byte 0x9 + f2: 0500 .2byte 0x500 + f4: 4500 .2byte 0x4500 + f6: 002c .2byte 0x2c + f8: 0500 .2byte 0x500 + fa: d700 .2byte 0xd700 + fc: 0024 .2byte 0x24 + fe: 0500 .2byte 0x500 + 100: b000 .2byte 0xb000 + 102: 002c .2byte 0x2c + 104: 0500 .2byte 0x500 + 106: 2b00 .2byte 0x2b00 + 108: 0006 .2byte 0x6 + 10a: 0500 .2byte 0x500 + 10c: e900 .2byte 0xe900 + 10e: 000c .2byte 0xc + 110: 0500 .2byte 0x500 + 112: 9500 .2byte 0x9500 + 114: 002c .2byte 0x2c + 116: 0500 .2byte 0x500 + 118: 9400 .2byte 0x9400 + 11a: 002e .2byte 0x2e + 11c: 0500 .2byte 0x500 + 11e: 9900 .2byte 0x9900 + 120: 0021 .2byte 0x21 + 122: 0500 .2byte 0x500 + 124: a800 .2byte 0xa800 + 126: 0004 .2byte 0x4 + 128: 0500 .2byte 0x500 + 12a: a600 .2byte 0xa600 + 12c: 0020 .2byte 0x20 + 12e: 0500 .2byte 0x500 + 130: cf00 .2byte 0xcf00 + 132: 05000033 .4byte 0x5000033 + 136: ba00 .2byte 0xba00 + 138: 0025 .2byte 0x25 + 13a: 0500 .2byte 0x500 + 13c: 5400 .2byte 0x5400 + 13e: 0006 .2byte 0x6 + 140: 0500 .2byte 0x500 + 142: 6c00 .2byte 0x6c00 + 144: 0024 .2byte 0x24 + 146: 0500 .2byte 0x500 + 148: 5300 .2byte 0x5300 + 14a: 0012 .2byte 0x12 + 14c: 0500 .2byte 0x500 + 14e: 5300 .2byte 0x5300 + 150: 05000027 .4byte 0x5000027 + 154: 8b00 .2byte 0x8b00 + 156: 0011 .2byte 0x11 + 158: 0500 .2byte 0x500 + 15a: 0900 .2byte 0x900 + 15c: 0028 .2byte 0x28 + 15e: 0500 .2byte 0x500 + 160: 6e00 .2byte 0x6e00 + 162: 0500002f .4byte 0x500002f + 166: 0b00 .2byte 0xb00 + 168: 05000007 .4byte 0x5000007 + 16c: 0e00 .2byte 0xe00 + 16e: 05000017 auipc x0,0x5000 + 172: 0e00 .2byte 0xe00 + 174: 000d .2byte 0xd + 176: 0500 .2byte 0x500 + 178: e600 .2byte 0xe600 + 17a: 05000027 .4byte 0x5000027 + 17e: d400 .2byte 0xd400 + 180: 0018 .2byte 0x18 + 182: 0500 .2byte 0x500 + 184: c500 .2byte 0xc500 + 186: 0022 .2byte 0x22 + 188: 0500 .2byte 0x500 + 18a: 7100 .2byte 0x7100 + 18c: 0021 .2byte 0x21 + 18e: 0500 .2byte 0x500 + 190: 8200 .2byte 0x8200 + 192: 0005 .2byte 0x5 + 194: 0500 .2byte 0x500 + 196: 4700 .2byte 0x4700 + 198: 000e .2byte 0xe + 19a: 0500 .2byte 0x500 + 19c: 6100 .2byte 0x6100 + 19e: 0011 .2byte 0x11 + 1a0: 0500 .2byte 0x500 + 1a2: e100 .2byte 0xe100 + 1a4: 0500002f .4byte 0x500002f + 1a8: 0f00 .2byte 0xf00 + 1aa: 000a .2byte 0xa + 1ac: 0500 .2byte 0x500 + 1ae: 7a00 .2byte 0x7a00 + 1b0: 0000 .2byte 0x0 + 1b2: 0500 .2byte 0x500 + 1b4: 1600 .2byte 0x1600 + 1b6: 0014 .2byte 0x14 + 1b8: 0500 .2byte 0x500 + 1ba: 7300 .2byte 0x7300 + 1bc: 002c .2byte 0x2c + 1be: 0500 .2byte 0x500 + 1c0: 2000 .2byte 0x2000 + 1c2: 0500002b .4byte 0x500002b + 1c6: b900 .2byte 0xb900 + 1c8: 0500002b .4byte 0x500002b + 1cc: a900 .2byte 0xa900 + 1ce: 000a .2byte 0xa + 1d0: 0500 .2byte 0x500 + 1d2: 5a00 .2byte 0x5a00 + 1d4: 0010 .2byte 0x10 + 1d6: 0500 .2byte 0x500 + 1d8: 3200 .2byte 0x3200 + 1da: 0018 .2byte 0x18 + 1dc: 0500 .2byte 0x500 + 1de: 3600 .2byte 0x3600 + 1e0: 002e .2byte 0x2e + 1e2: 0500 .2byte 0x500 + 1e4: 5600 .2byte 0x5600 + 1e6: 0022 .2byte 0x22 + 1e8: 0500 .2byte 0x500 + 1ea: 9100 .2byte 0x9100 + 1ec: 001d .2byte 0x1d + 1ee: 0500 .2byte 0x500 + 1f0: c100 .2byte 0xc100 + 1f2: 000e .2byte 0xe + 1f4: 0500 .2byte 0x500 + 1f6: 1400 .2byte 0x1400 + 1f8: 0004 .2byte 0x4 + 1fa: 0500 .2byte 0x500 + 1fc: 3900 .2byte 0x3900 + 1fe: 0022 .2byte 0x22 + 200: 0500 .2byte 0x500 + 202: 4c00 .2byte 0x4c00 + 204: 0032 .2byte 0x32 + 206: 0500 .2byte 0x500 + 208: 8100 .2byte 0x8100 + 20a: 0500000f fence ow,unknown + 20e: 1000 .2byte 0x1000 + 210: 0500002f .4byte 0x500002f + 214: e300 .2byte 0xe300 + 216: 002c .2byte 0x2c + 218: 0500 .2byte 0x500 + 21a: 0400 .2byte 0x400 + 21c: 0018 .2byte 0x18 + 21e: 0500 .2byte 0x500 + 220: f100 .2byte 0xf100 + 222: 0004 .2byte 0x4 + 224: 0500 .2byte 0x500 + 226: 4300 .2byte 0x4300 + 228: 0015 .2byte 0x15 + 22a: 0500 .2byte 0x500 + 22c: 1600 .2byte 0x1600 + 22e: 001c .2byte 0x1c + 230: 0500 .2byte 0x500 + 232: be00 .2byte 0xbe00 + 234: 001d .2byte 0x1d + 236: 0500 .2byte 0x500 + 238: 9900 .2byte 0x9900 + 23a: 0028 .2byte 0x28 + 23c: 0500 .2byte 0x500 + 23e: bc00 .2byte 0xbc00 + 240: 002e .2byte 0x2e + 242: 0500 .2byte 0x500 + 244: 9200 .2byte 0x9200 + 246: 0018 .2byte 0x18 + 248: 0500 .2byte 0x500 + 24a: 0600 .2byte 0x600 + 24c: 002c .2byte 0x2c + 24e: 0500 .2byte 0x500 + 250: 7d00 .2byte 0x7d00 + 252: 05000007 .4byte 0x5000007 + 256: 1300 .2byte 0x1300 + 258: 0500000b .4byte 0x500000b + 25c: 3800 .2byte 0x3800 + 25e: 0008 .2byte 0x8 + 260: 0500 .2byte 0x500 + 262: d900 .2byte 0xd900 + 264: 0009 .2byte 0x9 + 266: 0500 .2byte 0x500 + 268: 4100 .2byte 0x4100 + 26a: 0018 .2byte 0x18 + 26c: 0500 .2byte 0x500 + 26e: 7600 .2byte 0x7600 + 270: 001c .2byte 0x1c + 272: 0500 .2byte 0x500 + 274: 7600 .2byte 0x7600 + 276: 002e .2byte 0x2e + 278: 0500 .2byte 0x500 + 27a: 0c00 .2byte 0xc00 + 27c: 0015 .2byte 0x15 + 27e: 0500 .2byte 0x500 + 280: 1f00 .2byte 0x1f00 + 282: 002a .2byte 0x2a + 284: 0500 .2byte 0x500 + 286: 1900 .2byte 0x1900 + 288: 0030 .2byte 0x30 + 28a: 0500 .2byte 0x500 + 28c: e000 .2byte 0xe000 + 28e: 0032 .2byte 0x32 + 290: 0500 .2byte 0x500 + 292: 9500 .2byte 0x9500 + 294: 002a .2byte 0x2a + 296: 0500 .2byte 0x500 + 298: e300 .2byte 0xe300 + 29a: 0021 .2byte 0x21 + 29c: 0500 .2byte 0x500 + 29e: 2300 .2byte 0x2300 + 2a0: 05000013 addi x0,x0,80 + 2a4: 2800 .2byte 0x2800 + 2a6: 0021 .2byte 0x21 + 2a8: 0500 .2byte 0x500 + 2aa: b600 .2byte 0xb600 + 2ac: 0031 .2byte 0x31 + 2ae: 0500 .2byte 0x500 + 2b0: dd00 .2byte 0xdd00 + 2b2: 000d .2byte 0xd + 2b4: 0500 .2byte 0x500 + 2b6: 2c00 .2byte 0x2c00 + 2b8: 000d .2byte 0xd + 2ba: 0500 .2byte 0x500 + 2bc: 5900 .2byte 0x5900 + 2be: 0026 .2byte 0x26 + 2c0: 0500 .2byte 0x500 + 2c2: f900 .2byte 0xf900 + 2c4: 0500002f .4byte 0x500002f + 2c8: 3c00 .2byte 0x3c00 + 2ca: 001e .2byte 0x1e + 2cc: 0500 .2byte 0x500 + 2ce: b900 .2byte 0xb900 + 2d0: 0024 .2byte 0x24 + 2d2: 0500 .2byte 0x500 + 2d4: 4900 .2byte 0x4900 + 2d6: 0002 .2byte 0x2 + 2d8: 0500 .2byte 0x500 + 2da: 8400 .2byte 0x8400 + 2dc: 000a .2byte 0xa + 2de: 0500 .2byte 0x500 + 2e0: 2400 .2byte 0x2400 + 2e2: 001a .2byte 0x1a + 2e4: 0500 .2byte 0x500 + 2e6: b800 .2byte 0xb800 + 2e8: 002a .2byte 0x2a + 2ea: 0500 .2byte 0x500 + 2ec: 2000 .2byte 0x2000 + 2ee: 0034 .2byte 0x34 + 2f0: 0500 .2byte 0x500 + 2f2: 0f00 .2byte 0xf00 + 2f4: 001f 0500 7d00 .byte 0x1f, 0x00, 0x00, 0x05, 0x00, 0x7d + 2fa: 0022 .2byte 0x22 + 2fc: 0500 .2byte 0x500 + 2fe: e700 .2byte 0xe700 + 300: 05000033 .4byte 0x5000033 + 304: ae00 .2byte 0xae00 + 306: 001c .2byte 0x1c + 308: 0500 .2byte 0x500 + 30a: 4300 .2byte 0x4300 + 30c: 05000017 auipc x0,0x5000 + 310: 5b00 .2byte 0x5b00 + 312: 002d .2byte 0x2d + 314: 0500 .2byte 0x500 + 316: 7000 .2byte 0x7000 + 318: 002a .2byte 0x2a + 31a: 0500 .2byte 0x500 + 31c: 2e00 .2byte 0x2e00 + 31e: 0000 .2byte 0x0 + 320: 0500 .2byte 0x500 + 322: 7a00 .2byte 0x7a00 + 324: 0015 .2byte 0x15 + 326: 0500 .2byte 0x500 + 328: 3f00 .2byte 0x3f00 + 32a: 0024 .2byte 0x24 + 32c: 0500 .2byte 0x500 + 32e: c900 .2byte 0xc900 + 330: 0008 .2byte 0x8 + 332: 0500 .2byte 0x500 + 334: 6900 .2byte 0x6900 + 336: 0022 .2byte 0x22 + 338: 0500 .2byte 0x500 + 33a: ea00 .2byte 0xea00 + 33c: 0005 .2byte 0x5 + 33e: 0500 .2byte 0x500 + 340: 3600 .2byte 0x3600 + 342: 001c .2byte 0x1c + 344: 0500 .2byte 0x500 + 346: 2c00 .2byte 0x2c00 + 348: 0012 .2byte 0x12 + 34a: 0500 .2byte 0x500 + 34c: b900 .2byte 0xb900 + 34e: 0028 .2byte 0x28 + 350: 0500 .2byte 0x500 + 352: 5c00 .2byte 0x5c00 + 354: 0008 .2byte 0x8 + 356: 0500 .2byte 0x500 + 358: d400 .2byte 0xd400 + 35a: 0025 .2byte 0x25 + 35c: 0500 .2byte 0x500 + 35e: ae00 .2byte 0xae00 + 360: 001d .2byte 0x1d + 362: 0500 .2byte 0x500 + 364: 0f00 .2byte 0xf00 + 366: 000c .2byte 0xc + 368: 0500 .2byte 0x500 + 36a: a800 .2byte 0xa800 + 36c: 0009 .2byte 0x9 + 36e: 0500 .2byte 0x500 + 370: 6400 .2byte 0x6400 + 372: 001c .2byte 0x1c + 374: 0500 .2byte 0x500 + 376: 7000 .2byte 0x7000 + 378: 05000027 .4byte 0x5000027 + 37c: 1000 .2byte 0x1000 + 37e: 0029 .2byte 0x29 + 380: 0500 .2byte 0x500 + 382: 8100 .2byte 0x8100 + 384: 0020 .2byte 0x20 + 386: 0500 .2byte 0x500 + 388: b200 .2byte 0xb200 + 38a: 0002 .2byte 0x2 + 38c: 0500 .2byte 0x500 + 38e: e800 .2byte 0xe800 + 390: 0011 .2byte 0x11 + 392: 0500 .2byte 0x500 + 394: 3800 .2byte 0x3800 + 396: 05000023 sb x16,64(x0) # 40 + 39a: 5900 .2byte 0x5900 + 39c: 0005 .2byte 0x5 + 39e: 0500 .2byte 0x500 + 3a0: e200 .2byte 0xe200 + 3a2: 001f 0500 df00 .byte 0x1f, 0x00, 0x00, 0x05, 0x00, 0xdf + 3a8: 000e .2byte 0xe + 3aa: 0500 .2byte 0x500 + 3ac: fe00 .2byte 0xfe00 + 3ae: 0024 .2byte 0x24 + 3b0: 0500 .2byte 0x500 + 3b2: f900 .2byte 0xf900 + 3b4: 0029 .2byte 0x29 + 3b6: 0500 .2byte 0x500 + 3b8: 6500 .2byte 0x6500 + 3ba: 05000007 .4byte 0x5000007 + 3be: d300 .2byte 0xd300 + 3c0: 0016 .2byte 0x16 + 3c2: 0500 .2byte 0x500 + 3c4: cc00 .2byte 0xcc00 + 3c6: 0010 .2byte 0x10 + 3c8: 0500 .2byte 0x500 + 3ca: 4100 .2byte 0x4100 + 3cc: 0020 .2byte 0x20 + 3ce: 0500 .2byte 0x500 + 3d0: 0700 .2byte 0x700 + 3d2: 0022 .2byte 0x22 + 3d4: 0500 .2byte 0x500 + 3d6: fc00 .2byte 0xfc00 + 3d8: 000c .2byte 0xc + 3da: 0500 .2byte 0x500 + 3dc: 4f00 .2byte 0x4f00 + 3de: 001c .2byte 0x1c + 3e0: 0500 .2byte 0x500 + 3e2: 0400 .2byte 0x400 + 3e4: 05000023 sb x16,64(x0) # 40 + 3e8: ad00 .2byte 0xad00 + 3ea: 000c .2byte 0xc + 3ec: 0500 .2byte 0x500 + 3ee: 7200 .2byte 0x7200 + 3f0: 0016 .2byte 0x16 + 3f2: 0500 .2byte 0x500 + 3f4: 8500 .2byte 0x8500 + 3f6: 0016 .2byte 0x16 + 3f8: 0500 .2byte 0x500 + 3fa: f300 .2byte 0xf300 + 3fc: 001e .2byte 0x1e + 3fe: 0500 .2byte 0x500 + 400: c800 .2byte 0xc800 + 402: 0020 .2byte 0x20 + 404: 0500 .2byte 0x500 + 406: f300 .2byte 0xf300 + 408: 0006 .2byte 0x6 + 40a: 0500 .2byte 0x500 + 40c: a100 .2byte 0xa100 + 40e: 05000017 auipc x0,0x5000 + 412: 5b00 .2byte 0x5b00 + 414: 0016 .2byte 0x16 + 416: 0500 .2byte 0x500 + 418: ae00 .2byte 0xae00 + 41a: 0008 .2byte 0x8 + 41c: 0500 .2byte 0x500 + 41e: d100 .2byte 0xd100 + 420: 0006 .2byte 0x6 + 422: 0500 .2byte 0x500 + 424: 5500 .2byte 0x5500 + 426: 000a .2byte 0xa + 428: 0500 .2byte 0x500 + 42a: 3f00 .2byte 0x3f00 + 42c: 05000033 .4byte 0x5000033 + 430: 6400 .2byte 0x6400 + 432: 0031 .2byte 0x31 + 434: 0500 .2byte 0x500 + 436: 2c00 .2byte 0x2c00 + 438: 002c .2byte 0x2c + 43a: 0500 .2byte 0x500 + 43c: 9300 .2byte 0x9300 + 43e: 0015 .2byte 0x15 + 440: 0500 .2byte 0x500 + 442: 7400 .2byte 0x7400 + 444: 0026 .2byte 0x26 + 446: 0500 .2byte 0x500 + 448: 0300 .2byte 0x300 + 44a: 0500000f fence ow,unknown + 44e: 9400 .2byte 0x9400 + 450: 000c .2byte 0xc + 452: 0500 .2byte 0x500 + 454: 6200 .2byte 0x6200 + 456: 0021 .2byte 0x21 + 458: 0500 .2byte 0x500 + 45a: 4400 .2byte 0x4400 + 45c: 000c .2byte 0xc + 45e: 0500 .2byte 0x500 + 460: 8400 .2byte 0x8400 + 462: 0004 .2byte 0x4 + 464: 0500 .2byte 0x500 + 466: 6300 .2byte 0x6300 + 468: 0025 .2byte 0x25 + 46a: 0500 .2byte 0x500 + 46c: 2100 .2byte 0x2100 + 46e: 0010 .2byte 0x10 + 470: 0500 .2byte 0x500 + 472: 5d00 .2byte 0x5d00 + 474: 000d .2byte 0xd + 476: 0500 .2byte 0x500 + 478: 3b00 .2byte 0x3b00 + 47a: 0029 .2byte 0x29 + 47c: 0500 .2byte 0x500 + 47e: 2200 .2byte 0x2200 + 480: 0005 .2byte 0x5 + 482: 0500 .2byte 0x500 + 484: c100 .2byte 0xc100 + 486: 0030 .2byte 0x30 + 488: 0500 .2byte 0x500 + 48a: 6700 .2byte 0x6700 + 48c: 0500000b .4byte 0x500000b + 490: 2900 .2byte 0x2900 + 492: 0001 .2byte 0x1 + 494: 0500 .2byte 0x500 + 496: 3e00 .2byte 0x3e00 + 498: 0500001b .4byte 0x500001b + 49c: ca00 .2byte 0xca00 + 49e: 0500001b .4byte 0x500001b + 4a2: 3100 .2byte 0x3100 + 4a4: 0500000b .4byte 0x500000b + 4a8: f200 .2byte 0xf200 + 4aa: 0034 .2byte 0x34 + 4ac: 0500 .2byte 0x500 + 4ae: ea00 .2byte 0xea00 + 4b0: 0010 .2byte 0x10 + 4b2: 0500 .2byte 0x500 + 4b4: f600 .2byte 0xf600 + 4b6: 05000013 addi x0,x0,80 + 4ba: 3900 .2byte 0x3900 + 4bc: 0026 .2byte 0x26 + 4be: 0500 .2byte 0x500 + 4c0: 0f00 .2byte 0xf00 + 4c2: 0026 .2byte 0x26 + 4c4: 0500 .2byte 0x500 + 4c6: 5600 .2byte 0x5600 + 4c8: 002a .2byte 0x2a + 4ca: 0500 .2byte 0x500 + 4cc: c000 .2byte 0xc000 + 4ce: 0018 .2byte 0x18 + 4d0: 0500 .2byte 0x500 + 4d2: ba00 .2byte 0xba00 + 4d4: 05000023 sb x16,64(x0) # 40 + 4d8: e700 .2byte 0xe700 + 4da: 0016 .2byte 0x16 + 4dc: 0500 .2byte 0x500 + 4de: db00 .2byte 0xdb00 + 4e0: 001e .2byte 0x1e + 4e2: 0500 .2byte 0x500 + 4e4: 2d00 .2byte 0x2d00 + 4e6: 0015 .2byte 0x15 + 4e8: 0500 .2byte 0x500 + 4ea: dc00 .2byte 0xdc00 + 4ec: 002d .2byte 0x2d + 4ee: 0500 .2byte 0x500 + 4f0: f900 .2byte 0xf900 + 4f2: 0025 .2byte 0x25 + 4f4: 0500 .2byte 0x500 + 4f6: 8800 .2byte 0x8800 + 4f8: 000d .2byte 0xd + 4fa: 0500 .2byte 0x500 + 4fc: 4e00 .2byte 0x4e00 + 4fe: 05000013 addi x0,x0,80 + 502: 5900 .2byte 0x5900 + 504: 0500000b .4byte 0x500000b + 508: d800 .2byte 0xd800 + 50a: 0030 .2byte 0x30 + 50c: 0500 .2byte 0x500 + 50e: b200 .2byte 0xb200 + 510: 0000 .2byte 0x0 + 512: 0500 .2byte 0x500 + 514: f900 .2byte 0xf900 + 516: 002a .2byte 0x2a + 518: 0500 .2byte 0x500 + 51a: 7000 .2byte 0x7000 + 51c: 0012 .2byte 0x12 + 51e: 0500 .2byte 0x500 + 520: ee00 .2byte 0xee00 + 522: 0022 .2byte 0x22 + 524: 0500 .2byte 0x500 + 526: 3800 .2byte 0x3800 + 528: 0014 .2byte 0x14 + 52a: 0500 .2byte 0x500 + 52c: ee00 .2byte 0xee00 + 52e: 001d .2byte 0x1d + 530: 0500 .2byte 0x500 + 532: 6000 .2byte 0x6000 + 534: 0500002b .4byte 0x500002b + 538: 8000 .2byte 0x8000 + 53a: 002d .2byte 0x2d + 53c: 0500 .2byte 0x500 + 53e: d200 .2byte 0xd200 + 540: 0028 .2byte 0x28 + 542: 0500 .2byte 0x500 + 544: dd00 .2byte 0xdd00 + 546: 0034 .2byte 0x34 + 548: 0500 .2byte 0x500 + 54a: 7700 .2byte 0x7700 + 54c: 0500001b .4byte 0x500001b + 550: 4300 .2byte 0x4300 + 552: 002e .2byte 0x2e + 554: 0500 .2byte 0x500 + 556: 1400 .2byte 0x1400 + 558: 0006 .2byte 0x6 + 55a: 0500 .2byte 0x500 + 55c: 6e00 .2byte 0x6e00 + 55e: 0005 .2byte 0x5 + 560: 0500 .2byte 0x500 + 562: ce00 .2byte 0xce00 + 564: 0034 .2byte 0x34 + 566: 0500 .2byte 0x500 + 568: 9a00 .2byte 0x9a00 + 56a: 0002 .2byte 0x2 + 56c: 0500 .2byte 0x500 + 56e: 6f00 .2byte 0x6f00 + 570: 0014 .2byte 0x14 + 572: 0500 .2byte 0x500 + 574: ab00 .2byte 0xab00 + 576: 0500001b .4byte 0x500001b + 57a: b000 .2byte 0xb000 + 57c: 0500002f .4byte 0x500002f + 580: 0a00 .2byte 0xa00 + 582: 0035 .2byte 0x35 + 584: 0500 .2byte 0x500 + 586: 6500 .2byte 0x6500 + 588: 0019 .2byte 0x19 + 58a: 0500 .2byte 0x500 + 58c: 8700 .2byte 0x8700 + 58e: 0010 .2byte 0x10 + 590: 0500 .2byte 0x500 + 592: ed00 .2byte 0xed00 + 594: 0026 .2byte 0x26 + 596: 0500 .2byte 0x500 + 598: 1800 .2byte 0x1800 + 59a: 002d .2byte 0x2d + 59c: 0500 .2byte 0x500 + 59e: 6600 .2byte 0x6600 + 5a0: 0032 .2byte 0x32 + 5a2: 0500 .2byte 0x500 + 5a4: da00 .2byte 0xda00 + 5a6: 0031 .2byte 0x31 + 5a8: 0500 .2byte 0x500 + 5aa: fd00 .2byte 0xfd00 + 5ac: 002d .2byte 0x2d + 5ae: 0500 .2byte 0x500 + 5b0: 1500 .2byte 0x1500 + 5b2: 000e .2byte 0xe + 5b4: 0500 .2byte 0x500 + 5b6: f700 .2byte 0xf700 + 5b8: 0016 .2byte 0x16 + 5ba: 0500 .2byte 0x500 + 5bc: 1b00 .2byte 0x1b00 + 5be: 0002 .2byte 0x2 + 5c0: 0500 .2byte 0x500 + 5c2: 8400 .2byte 0x8400 + 5c4: 000c .2byte 0xc + 5c6: 0500 .2byte 0x500 + 5c8: 1e00 .2byte 0x1e00 + 5ca: 05000023 sb x16,64(x0) # 40 + 5ce: 9200 .2byte 0x9200 + 5d0: 001c .2byte 0x1c + 5d2: 0500 .2byte 0x500 + 5d4: 8d00 .2byte 0x8d00 + 5d6: 000e .2byte 0xe + 5d8: 0500 .2byte 0x500 + 5da: 5f00 .2byte 0x5f00 + 5dc: 05000033 .4byte 0x5000033 + 5e0: 5200 .2byte 0x5200 + 5e2: 0029 .2byte 0x29 + 5e4: 0500 .2byte 0x500 + 5e6: ee00 .2byte 0xee00 + 5e8: 0500002b .4byte 0x500002b + 5ec: ae00 .2byte 0xae00 + 5ee: 0011 .2byte 0x11 + 5f0: 0500 .2byte 0x500 + 5f2: 3500 .2byte 0x3500 + 5f4: 001f 0500 c100 .byte 0x1f, 0x00, 0x00, 0x05, 0x00, 0xc1 + 5fa: 05000007 .4byte 0x5000007 + 5fe: 8600 .2byte 0x8600 + 600: 0012 .2byte 0x12 + 602: 0500 .2byte 0x500 + 604: dc00 .2byte 0xdc00 + 606: 0008 .2byte 0x8 + 608: 0500 .2byte 0x500 + 60a: 7b00 .2byte 0x7b00 + 60c: 0034 .2byte 0x34 + 60e: 0500 .2byte 0x500 + 610: c300 .2byte 0xc300 + 612: 001e .2byte 0x1e + 614: 0500 .2byte 0x500 + 616: a100 .2byte 0xa100 + 618: 0025 .2byte 0x25 + 61a: 0500 .2byte 0x500 + 61c: c100 .2byte 0xc100 + 61e: 0009 .2byte 0x9 + 620: 0500 .2byte 0x500 + 622: de00 .2byte 0xde00 + 624: 0001 .2byte 0x1 + 626: 0500 .2byte 0x500 + 628: d600 .2byte 0xd600 + 62a: 0014 .2byte 0x14 + 62c: 0500 .2byte 0x500 + 62e: 9000 .2byte 0x9000 + 630: 05000013 addi x0,x0,80 + 634: fb00 .2byte 0xfb00 + 636: 05000007 .4byte 0x5000007 + 63a: 2d00 .2byte 0x2d00 + 63c: 05000017 auipc x0,0x5000 + 640: ad00 .2byte 0xad00 + 642: 0032 .2byte 0x32 + 644: 0500 .2byte 0x500 + 646: 6000 .2byte 0x6000 + 648: 000c .2byte 0xc + 64a: 0500 .2byte 0x500 + 64c: af00 .2byte 0xaf00 + 64e: 0005 .2byte 0x5 + 650: 0500 .2byte 0x500 + 652: c900 .2byte 0xc900 + 654: 05000003 lb x0,80(x0) # 50 <_Z6strlenPKc+0x8> + 658: 7800 .2byte 0x7800 + 65a: 05000033 .4byte 0x5000033 + 65e: d600 .2byte 0xd600 + 660: 05000023 sb x16,64(x0) # 40 + 664: ff00 .2byte 0xff00 + 666: 001f 0500 e000 .byte 0x1f, 0x00, 0x00, 0x05, 0x00, 0xe0 + 66c: 000a .2byte 0xa + 66e: 0500 .2byte 0x500 + 670: 5700 .2byte 0x5700 + 672: 0000 .2byte 0x0 + 674: 0500 .2byte 0x500 + 676: 2a00 .2byte 0x2a00 + 678: 000c .2byte 0xc + 67a: 0500 .2byte 0x500 + 67c: 5b00 .2byte 0x5b00 + 67e: 001e .2byte 0x1e + 680: 0500 .2byte 0x500 + 682: 2b00 .2byte 0x2b00 + 684: 05000007 .4byte 0x5000007 + 688: 4300 .2byte 0x4300 + 68a: 0009 .2byte 0x9 + 68c: 0500 .2byte 0x500 + 68e: ba00 .2byte 0xba00 + 690: 002d .2byte 0x2d + 692: 0500 .2byte 0x500 + 694: 2d00 .2byte 0x2d00 + 696: 0011 .2byte 0x11 + 698: 0500 .2byte 0x500 + 69a: 9b00 .2byte 0x9b00 + 69c: 0000 .2byte 0x0 + 69e: 0500 .2byte 0x500 + 6a0: 3400 .2byte 0x3400 + 6a2: 0500000f fence ow,unknown + 6a6: 6200 .2byte 0x6200 + 6a8: 05000013 addi x0,x0,80 + 6ac: 2900 .2byte 0x2900 + 6ae: 0019 .2byte 0x19 + 6b0: 0500 .2byte 0x500 + 6b2: a500 .2byte 0xa500 + 6b4: 05000027 .4byte 0x5000027 + 6b8: 4800 .2byte 0x4800 + 6ba: 0004 .2byte 0x4 + 6bc: 0500 .2byte 0x500 + 6be: 9400 .2byte 0x9400 + 6c0: 0500000b .4byte 0x500000b + 6c4: fc00 .2byte 0xfc00 + 6c6: 0032 .2byte 0x32 + 6c8: 0500 .2byte 0x500 + 6ca: f500 .2byte 0xf500 + 6cc: 0014 .2byte 0x14 + 6ce: 0500 .2byte 0x500 + 6d0: 5e00 .2byte 0x5e00 + 6d2: 000e .2byte 0xe + 6d4: 0500 .2byte 0x500 + 6d6: 3d00 .2byte 0x3d00 + 6d8: 0000 .2byte 0x0 + 6da: 0500 .2byte 0x500 + 6dc: c700 .2byte 0xc700 + 6de: 000a .2byte 0xa + 6e0: 0500 .2byte 0x500 + 6e2: 0300 .2byte 0x300 + 6e4: 0002 .2byte 0x2 + 6e6: 0500 .2byte 0x500 + 6e8: 7900 .2byte 0x7900 + 6ea: 0011 .2byte 0x11 + 6ec: 0500 .2byte 0x500 + 6ee: f300 .2byte 0xf300 + 6f0: 0500000b .4byte 0x500000b + 6f4: 9700 .2byte 0x9700 + 6f6: 001f 0500 4400 .byte 0x1f, 0x00, 0x00, 0x05, 0x00, 0x44 + 6fc: 000d .2byte 0xd + 6fe: 0500 .2byte 0x500 + 700: 1200 .2byte 0x1200 + 702: 0011 .2byte 0x11 + 704: 0500 .2byte 0x500 + 706: 2100 .2byte 0x2100 + 708: 0029 .2byte 0x29 + 70a: 0500 .2byte 0x500 + 70c: 2900 .2byte 0x2900 + 70e: 05000003 lb x0,80(x0) # 50 <_Z6strlenPKc+0x8> + 712: 0d00 .2byte 0xd00 + 714: 0031 .2byte 0x31 + 716: 0500 .2byte 0x500 + 718: dd00 .2byte 0xdd00 + 71a: 0015 .2byte 0x15 + 71c: 0500 .2byte 0x500 + 71e: 8900 .2byte 0x8900 + 720: 0026 .2byte 0x26 + 722: 0500 .2byte 0x500 + 724: 5300 .2byte 0x5300 + 726: 0030 .2byte 0x30 + 728: 0500 .2byte 0x500 + 72a: 0800 .2byte 0x800 + 72c: 0034 .2byte 0x34 + 72e: 0500 .2byte 0x500 + 730: ab00 .2byte 0xab00 + 732: 0014 .2byte 0x14 + 734: 0500 .2byte 0x500 + 736: 3a00 .2byte 0x3a00 + 738: 000a .2byte 0xa + 73a: 0500 .2byte 0x500 + 73c: 6100 .2byte 0x6100 + 73e: 0034 .2byte 0x34 + 740: 0500 .2byte 0x500 + 742: 1b00 .2byte 0x1b00 + 744: 0018 .2byte 0x18 + 746: 0500 .2byte 0x500 + 748: f200 .2byte 0xf200 + 74a: 05000017 auipc x0,0x5000 + 74e: 1400 .2byte 0x1400 + 750: 0025 .2byte 0x25 + 752: 0500 .2byte 0x500 + 754: 8400 .2byte 0x8400 + 756: 0024 .2byte 0x24 + 758: 0500 .2byte 0x500 + 75a: 1100 .2byte 0x1100 + 75c: 0001 .2byte 0x1 + 75e: 0500 .2byte 0x500 + 760: 9c00 .2byte 0x9c00 + 762: 0031 .2byte 0x31 + 764: 0500 .2byte 0x500 + 766: 6800 .2byte 0x6800 + 768: 0002 .2byte 0x2 + 76a: 0500 .2byte 0x500 + 76c: eb00 .2byte 0xeb00 + 76e: 0002 .2byte 0x2 + 770: 0500 .2byte 0x500 + 772: ef00 .2byte 0xef00 + 774: 0031 .2byte 0x31 + 776: 0500 .2byte 0x500 + 778: 7f00 .2byte 0x7f00 + 77a: 001a .2byte 0x1a + 77c: 0500 .2byte 0x500 + 77e: c200 .2byte 0xc200 + 780: 0012 .2byte 0x12 + 782: 0500 .2byte 0x500 + 784: 9800 .2byte 0x9800 + 786: 000d .2byte 0xd + 788: 0500 .2byte 0x500 + 78a: 6200 .2byte 0x6200 + 78c: 0015 .2byte 0x15 + 78e: 0500 .2byte 0x500 + 790: f500 .2byte 0xf500 + 792: 0009 .2byte 0x9 + 794: 0500 .2byte 0x500 + 796: 9500 .2byte 0x9500 + 798: 0500002f .4byte 0x500002f + 79c: a600 .2byte 0xa600 + 79e: 0018 .2byte 0x18 + 7a0: 0500 .2byte 0x500 + 7a2: fe00 .2byte 0xfe00 + 7a4: 0500001b .4byte 0x500001b + 7a8: 0f00 .2byte 0xf00 + 7aa: 0010 .2byte 0x10 + 7ac: 0500 .2byte 0x500 + 7ae: f700 .2byte 0xf700 + 7b0: 000a .2byte 0xa + 7b2: 0500 .2byte 0x500 + 7b4: 6900 .2byte 0x6900 + 7b6: 0010 .2byte 0x10 + 7b8: 0500 .2byte 0x500 + 7ba: a500 .2byte 0xa500 + 7bc: 0006 .2byte 0x6 + 7be: 0500 .2byte 0x500 + 7c0: e300 .2byte 0xe300 + 7c2: 0024 .2byte 0x24 + 7c4: 0500 .2byte 0x500 + 7c6: 8200 .2byte 0x8200 + 7c8: 0031 .2byte 0x31 + 7ca: 0500 .2byte 0x500 + 7cc: 4000 .2byte 0x4000 + 7ce: 001a .2byte 0x1a + 7d0: 0500 .2byte 0x500 + 7d2: b200 .2byte 0xb200 + 7d4: 05000013 addi x0,x0,80 + 7d8: 4a00 .2byte 0x4a00 + 7da: 05000023 sb x16,64(x0) # 40 + 7de: 6100 .2byte 0x6100 + 7e0: 0001 .2byte 0x1 + 7e2: 0500 .2byte 0x500 + 7e4: cb00 .2byte 0xcb00 + 7e6: 0000 .2byte 0x0 + 7e8: 0500 .2byte 0x500 + 7ea: c600 .2byte 0xc600 + 7ec: 0001 .2byte 0x1 + 7ee: 0500 .2byte 0x500 + 7f0: d100 .2byte 0xd100 + 7f2: 001a .2byte 0x1a + 7f4: 0500 .2byte 0x500 + 7f6: 5c00 .2byte 0x5c00 + 7f8: 0500001b .4byte 0x500001b + 7fc: 2d00 .2byte 0x2d00 + 7fe: 000e .2byte 0xe + 800: 0500 .2byte 0x500 + 802: 7b00 .2byte 0x7b00 + 804: 05000013 addi x0,x0,80 + 808: a400 .2byte 0xa400 + 80a: 0029 .2byte 0x29 + 80c: 0500 .2byte 0x500 + 80e: fb00 .2byte 0xfb00 + 810: 0011 .2byte 0x11 + 812: 0500 .2byte 0x500 + 814: 0300 .2byte 0x300 + 816: 05000013 addi x0,x0,80 + 81a: 4000 .2byte 0x4000 + 81c: 0006 .2byte 0x6 + 81e: 0500 .2byte 0x500 + 820: ef00 .2byte 0xef00 + 822: 0030 .2byte 0x30 + 824: 0500 .2byte 0x500 + 826: 6d00 .2byte 0x6d00 + 828: 0006 .2byte 0x6 + 82a: 0500 .2byte 0x500 + 82c: c900 .2byte 0xc900 + 82e: 0002 .2byte 0x2 + 830: 0500 .2byte 0x500 + 832: bb00 .2byte 0xbb00 + 834: 0029 .2byte 0x29 + 836: 0500 .2byte 0x500 + 838: bc00 .2byte 0xbc00 + 83a: 0015 .2byte 0x15 + 83c: 0500 .2byte 0x500 + 83e: f900 .2byte 0xf900 + 840: 002c .2byte 0x2c + 842: 0500 .2byte 0x500 + 844: a400 .2byte 0xa400 + 846: 000e .2byte 0xe + 848: 0500 .2byte 0x500 + 84a: d400 .2byte 0xd400 + 84c: 05000017 auipc x0,0x5000 + 850: da00 .2byte 0xda00 + 852: 002a .2byte 0x2a + 854: 0500 .2byte 0x500 + 856: eb00 .2byte 0xeb00 + 858: 001a .2byte 0x1a + 85a: 0500 .2byte 0x500 + 85c: f700 .2byte 0xf700 + 85e: 0018 .2byte 0x18 + 860: 0500 .2byte 0x500 + 862: 5b00 .2byte 0x5b00 + 864: 002e .2byte 0x2e + 866: 0500 .2byte 0x500 + 868: 8300 .2byte 0x8300 + 86a: 0029 .2byte 0x29 + 86c: 0500 .2byte 0x500 + 86e: 0f00 .2byte 0xf00 + 870: 0500001b .4byte 0x500001b + 874: b300 .2byte 0xb300 + 876: 05000033 .4byte 0x5000033 + 87a: 7400 .2byte 0x7400 + 87c: 001f 0500 6800 .byte 0x1f, 0x00, 0x00, 0x05, 0x00, 0x68 + 882: 05000003 lb x0,80(x0) # 50 <_Z6strlenPKc+0x8> + 886: 6a00 .2byte 0x6a00 + 888: 0500000f fence ow,unknown + 88c: b200 .2byte 0xb200 + 88e: 002e .2byte 0x2e + 890: 0500 .2byte 0x500 + 892: 1300 .2byte 0x1300 + 894: 05000013 addi x0,x0,80 + 898: 6a00 .2byte 0x6a00 + 89a: 0029 .2byte 0x29 + 89c: 0500 .2byte 0x500 + 89e: 8200 .2byte 0x8200 + 8a0: 0002 .2byte 0x2 + 8a2: 0500 .2byte 0x500 + 8a4: 1c00 .2byte 0x1c00 + 8a6: 0016 .2byte 0x16 + 8a8: 0500 .2byte 0x500 + 8aa: ca00 .2byte 0xca00 + 8ac: 0026 .2byte 0x26 + 8ae: 0500 .2byte 0x500 + 8b0: 5100 .2byte 0x5100 + 8b2: 0031 .2byte 0x31 + 8b4: 0000 .2byte 0x0 + 8b6: 0005 .2byte 0x5 + 8b8: 0500 .2byte 0x500 + 8ba: e61d .2byte 0xe61d + 8bc: 0014 .2byte 0x14 + 8be: 0600 .2byte 0x600 + 8c0: 7164 .2byte 0x7164 + 8c2: 0000 .2byte 0x0 + 8c4: 0500 .2byte 0x500 + 8c6: 5865 .2byte 0x5865 + 8c8: 0600002f .4byte 0x600002f + 8cc: 3166 .2byte 0x3166 + 8ce: 000a .2byte 0xa + 8d0: 0500 .2byte 0x500 + 8d2: 000cd067 .4byte 0xcd067 + 8d6: 0600 .2byte 0x600 + 8d8: 706a .2byte 0x706a + 8da: 0000 .2byte 0x0 + 8dc: 0500 .2byte 0x500 + 8de: 00050a6b .4byte 0x50a6b + 8e2: 0600 .2byte 0x600 + 8e4: 0a6e .2byte 0xa6e + 8e6: 0004 .2byte 0x4 + 8e8: 0500 .2byte 0x500 + 8ea: 0030a96f jal x18,b0ec + 8ee: 0600 .2byte 0x600 + 8f0: b070 .2byte 0xb070 + 8f2: 05000023 sb x16,64(x0) # 40 + 8f6: a571 .2byte 0xa571 + 8f8: 0019 .2byte 0x19 + 8fa: 0600 .2byte 0x600 + 8fc: 0974 .2byte 0x974 + 8fe: 0004 .2byte 0x4 + 900: 0500 .2byte 0x500 + 902: 7f75 .2byte 0x7f75 + 904: 0028 .2byte 0x28 + 906: 0600 .2byte 0x600 + 908: 8378 .2byte 0x8378 + 90a: 05000027 .4byte 0x5000027 + 90e: 8d79 .2byte 0x8d79 + 910: 06000027 .4byte 0x6000027 + 914: 567a .2byte 0x567a + 916: 0500002b .4byte 0x500002b + 91a: 0034b37b .4byte 0x34b37b + 91e: 0600 .2byte 0x600 + 920: 827e .2byte 0x827e + 922: 05000027 .4byte 0x5000027 + 926: c77f 002f 0600 0182 .byte 0x7f, 0xc7, 0x2f, 0x00, 0x00, 0x06, 0x82, 0x01, 0xd6, 0x32, 0x00, 0x00, 0x05, 0x83, 0x01, 0x11, 0x19, 0x00 + 92e: 32d6 0000 8305 1101 + 936: 0019 + 938: 0600 .2byte 0x600 + 93a: 0184 .2byte 0x184 + 93c: 3178 .2byte 0x3178 + 93e: 0000 .2byte 0x0 + 940: 8505 .2byte 0x8505 + 942: 4701 .2byte 0x4701 + 944: 0021 .2byte 0x21 + 946: 0600 .2byte 0x600 + 948: 0188 .2byte 0x188 + 94a: 32d5 .2byte 0x32d5 + 94c: 0000 .2byte 0x0 + 94e: 8905 .2byte 0x8905 + 950: 3201 .2byte 0x3201 + 952: 0032 .2byte 0x32 + 954: 0600 .2byte 0x600 + 956: 018c .2byte 0x18c + 958: 0142 .2byte 0x142 + 95a: 0000 .2byte 0x0 + 95c: 8d05 .2byte 0x8d05 + 95e: 9b01 .2byte 0x9b01 + 960: 0016 .2byte 0x16 + 962: 0600 .2byte 0x600 + 964: 018e .2byte 0x18e + 966: 1a02 .2byte 0x1a02 + 968: 0000 .2byte 0x0 + 96a: 8f05 .2byte 0x8f05 + 96c: 9e01 .2byte 0x9e01 + 96e: 001e .2byte 0x1e + 970: 0600 .2byte 0x600 + 972: 0190 .2byte 0x190 + 974: 0141 .2byte 0x141 + 976: 0000 .2byte 0x0 + 978: 9105 .2byte 0x9105 + 97a: 4101 .2byte 0x4101 + 97c: 06000007 .4byte 0x6000007 + 980: 0192 .2byte 0x192 + 982: 26dd .2byte 0x26dd + 984: 0000 .2byte 0x0 + 986: 9305 .2byte 0x9305 + 988: a201 .2byte 0xa201 + 98a: 0001 .2byte 0x1 + 98c: 0600 .2byte 0x600 + 98e: 0194 .2byte 0x194 + 990: 0151 .2byte 0x151 + 992: 0000 .2byte 0x0 + 994: 9505 .2byte 0x9505 + 996: 5401 .2byte 0x5401 + 998: 0009 .2byte 0x9 + 99a: 0600 .2byte 0x600 + 99c: 0196 .2byte 0x196 + 99e: 26dc .2byte 0x26dc + 9a0: 0000 .2byte 0x0 + 9a2: 9705 .2byte 0x9705 + 9a4: 0201 .2byte 0x201 + 9a6: 0021 .2byte 0x21 + 9a8: 0600 .2byte 0x600 + 9aa: 0198 .2byte 0x198 + 9ac: 0fa1 .2byte 0xfa1 + 9ae: 0000 .2byte 0x0 + 9b0: 9905 .2byte 0x9905 + 9b2: 3d01 .2byte 0x3d01 + 9b4: 0034 .2byte 0x34 + 9b6: 0600 .2byte 0x600 + 9b8: 019a .2byte 0x19a + 9ba: 3099 .2byte 0x3099 + 9bc: 0000 .2byte 0x0 + 9be: 9b05 .2byte 0x9b05 + 9c0: 2b01 .2byte 0x2b01 + 9c2: 0028 .2byte 0x28 + 9c4: 0600 .2byte 0x600 + 9c6: 019c .2byte 0x19c + 9c8: 0fa0 .2byte 0xfa0 + 9ca: 0000 .2byte 0x0 + 9cc: 9d05 .2byte 0x9d05 + 9ce: cb01 .2byte 0xcb01 + 9d0: 0004 .2byte 0x4 + 9d2: 0600 .2byte 0x600 + 9d4: 019e .2byte 0x19e + 9d6: 14c6 .2byte 0x14c6 + 9d8: 0000 .2byte 0x0 + 9da: 9f05 .2byte 0x9f05 + 9dc: 3f01 .2byte 0x3f01 + 9de: 0025 .2byte 0x25 + 9e0: 0600 .2byte 0x600 + 9e2: 01a0 .2byte 0x1a0 + 9e4: 163a .2byte 0x163a + 9e6: 0000 .2byte 0x0 + 9e8: a105 .2byte 0xa105 + 9ea: 8901 .2byte 0x8901 + 9ec: 06000023 sb x0,96(x0) # 60 <_Z6strlenPKc+0x18> + 9f0: 01a2 .2byte 0x1a2 + 9f2: 14c5 .2byte 0x14c5 + 9f4: 0000 .2byte 0x0 + 9f6: a305 .2byte 0xa305 + 9f8: 6b01 .2byte 0x6b01 + 9fa: 001d .2byte 0x1d + 9fc: 0600 .2byte 0x600 + 9fe: 01a5 .2byte 0x1a5 + a00: 00001043 .4byte 0x1043 + a04: a605 .2byte 0xa605 + a06: d301 .2byte 0xd301 + a08: 0600000b .4byte 0x600000b + a0c: 1f8901a7 .4byte 0x1f8901a7 + a10: 0000 .2byte 0x0 + a12: a805 .2byte 0xa805 + a14: 7e01 .2byte 0x7e01 + a16: 06000017 auipc x0,0x6000 + a1a: 01a9 .2byte 0x1a9 + a1c: 1042 .2byte 0x1042 + a1e: 0000 .2byte 0x0 + a20: aa05 .2byte 0xaa05 + a22: 9701 .2byte 0x9701 + a24: 0600002b .4byte 0x600002b + a28: 32c601ab .4byte 0x32c601ab + a2c: 0000 .2byte 0x0 + a2e: ac05 .2byte 0xac05 + a30: 9601 .2byte 0x9601 + a32: 06000003 lb x0,96(x0) # 60 <_Z6strlenPKc+0x18> + a36: 01ad .2byte 0x1ad + a38: 0a75 .2byte 0xa75 + a3a: 0000 .2byte 0x0 + a3c: ae05 .2byte 0xae05 + a3e: c001 .2byte 0xc001 + a40: 0019 .2byte 0x19 + a42: 0600 .2byte 0x600 + a44: 32c501af .4byte 0x32c501af + a48: 0000 .2byte 0x0 + a4a: b005 .2byte 0xb005 + a4c: 3401 .2byte 0x3401 + a4e: 0600002f .4byte 0x600002f + a52: 01b1 .2byte 0x1b1 + a54: 1e75 .2byte 0x1e75 + a56: 0000 .2byte 0x0 + a58: b205 .2byte 0xb205 + a5a: 8901 .2byte 0x8901 + a5c: 0014 .2byte 0x14 + a5e: 0600 .2byte 0x600 + a60: 1ddf01b3 .4byte 0x1ddf01b3 + a64: 0000 .2byte 0x0 + a66: b405 .2byte 0xb405 + a68: e201 .2byte 0xe201 + a6a: 002e .2byte 0x2e + a6c: 0600 .2byte 0x600 + a6e: 01b5 .2byte 0x1b5 + a70: 1e74 .2byte 0x1e74 + a72: 0000 .2byte 0x0 + a74: b605 .2byte 0xb605 + a76: 5f01 .2byte 0x5f01 + a78: 0018 .2byte 0x18 + a7a: 0600 .2byte 0x600 + a7c: 253001b7 lui x3,0x25300 + a80: 0000 .2byte 0x0 + a82: b805 .2byte 0xb805 + a84: c101 .2byte 0xc101 + a86: 0021 .2byte 0x21 + a88: 0600 .2byte 0x600 + a8a: 01b9 .2byte 0x1b9 + a8c: 0fb1 .2byte 0xfb1 + a8e: 0000 .2byte 0x0 + a90: ba05 .2byte 0xba05 + a92: 1401 .2byte 0x1401 + a94: 0024 .2byte 0x24 + a96: 0600 .2byte 0x600 + a98: 252f01bb .4byte 0x252f01bb + a9c: 0000 .2byte 0x0 + a9e: bc05 .2byte 0xbc05 + aa0: df01 .2byte 0xdf01 + aa2: 0600000f fence or,unknown + aa6: 34a801bf c0050000 .8byte 0xc005000034a801bf + aae: 8e01 .2byte 0x8e01 + ab0: 0009 .2byte 0x9 + ab2: 0600 .2byte 0x600 + ab4: 01c1 .2byte 0x1c1 + ab6: 1ff4 .2byte 0x1ff4 + ab8: 0000 .2byte 0x0 + aba: c205 .2byte 0xc205 + abc: e501 .2byte 0xe501 + abe: 0019 .2byte 0x19 + ac0: 0600 .2byte 0x600 + ac2: 01c5 .2byte 0x1c5 + ac4: 000034a7 .4byte 0x34a7 + ac8: c605 .2byte 0xc605 + aca: e201 .2byte 0xe201 + acc: 0600001b .4byte 0x600001b + ad0: 01c9 .2byte 0x1c9 + ad2: 25ee .2byte 0x25ee + ad4: 0000 .2byte 0x0 + ad6: ca05 .2byte 0xca05 + ad8: 8b01 .2byte 0x8b01 + ada: 0006 .2byte 0x6 + adc: 0600 .2byte 0x600 + ade: 103701cb .4byte 0x103701cb + ae2: 0000 .2byte 0x0 + ae4: cc05 .2byte 0xcc05 + ae6: 7f01 .2byte 0x7f01 + ae8: 0008 .2byte 0x8 + aea: 0600 .2byte 0x600 + aec: 01cd .2byte 0x1cd + aee: 25ed .2byte 0x25ed + af0: 0000 .2byte 0x0 + af2: ce05 .2byte 0xce05 + af4: 2c01 .2byte 0x2c01 + af6: 0004 .2byte 0x4 + af8: 0600 .2byte 0x600 + afa: 01d2 .2byte 0x1d2 + afc: 000017bf 8501d305 .8byte 0x8501d305000017bf + b04: 0025 .2byte 0x25 + b06: 0600 .2byte 0x600 + b08: 01d4 .2byte 0x1d4 + b0a: 00001003 lh x0,0(x0) # 0 <_start> + b0e: d505 .2byte 0xd505 + b10: c001 .2byte 0xc001 + b12: 0600000f fence or,unknown + b16: 0b8501d7 .4byte 0xb8501d7 + b1a: 0000 .2byte 0x0 + b1c: d805 .2byte 0xd805 + b1e: 1401 .2byte 0x1401 + b20: 002e .2byte 0x2e + b22: 0600 .2byte 0x600 + b24: 01d9 .2byte 0x1d9 + b26: 2744 .2byte 0x2744 + b28: 0000 .2byte 0x0 + b2a: da05 .2byte 0xda05 + b2c: 1601 .2byte 0x1601 + b2e: 0008 .2byte 0x8 + b30: 0600 .2byte 0x600 + b32: 01dc .2byte 0x1dc + b34: 000017cb .4byte 0x17cb + b38: dd05 .2byte 0xdd05 + b3a: bd01 .2byte 0xbd01 + b3c: 0016 .2byte 0x16 + b3e: 0600 .2byte 0x600 + b40: 01df 2b4c 0000 .byte 0xdf, 0x01, 0x4c, 0x2b, 0x00, 0x00 + b46: e005 .2byte 0xe005 + b48: 6701 .2byte 0x6701 + b4a: 0028 .2byte 0x28 + b4c: 0600 .2byte 0x600 + b4e: 01e1 .2byte 0x1e1 + b50: 1630 .2byte 0x1630 + b52: 0000 .2byte 0x0 + b54: e205 .2byte 0xe205 + b56: cb01 .2byte 0xcb01 + b58: 002c .2byte 0x2c + b5a: 0600 .2byte 0x600 + b5c: 01e4 .2byte 0x1e4 + b5e: 13a9 .2byte 0x13a9 + b60: 0000 .2byte 0x0 + b62: e505 .2byte 0xe505 + b64: 9101 .2byte 0x9101 + b66: 0034 .2byte 0x34 + b68: 0600 .2byte 0x600 + b6a: 01e6 .2byte 0x1e6 + b6c: 00002f07 .4byte 0x2f07 + b70: e705 .2byte 0xe705 + b72: 7701 .2byte 0x7701 + b74: 000e .2byte 0xe + b76: 0600 .2byte 0x600 + b78: 2dd501ef jal x3,51654 <__BSS_END__+0x3ef20> + b7c: 0000 .2byte 0x0 + b7e: f005 .2byte 0xf005 + b80: 5601 .2byte 0x5601 + b82: 0024 .2byte 0x24 + b84: 0600 .2byte 0x600 + b86: 01f1 .2byte 0x1f1 + b88: 315c .2byte 0x315c + b8a: 0000 .2byte 0x0 + b8c: f205 .2byte 0xf205 + b8e: 3101 .2byte 0x3101 + b90: 0002 .2byte 0x2 + b92: 0600 .2byte 0x600 + b94: 206f01f3 .4byte 0x206f01f3 + b98: 0000 .2byte 0x0 + b9a: f405 .2byte 0xf405 + b9c: 1c01 .2byte 0x1c01 + b9e: 0600000f fence or,unknown + ba2: 01f5 .2byte 0x1f5 + ba4: 110a .2byte 0x110a + ba6: 0000 .2byte 0x0 + ba8: f605 .2byte 0xf605 + baa: a101 .2byte 0xa101 + bac: 0024 .2byte 0x24 + bae: 0600 .2byte 0x600 + bb0: 2dd401f7 .4byte 0x2dd401f7 + bb4: 0000 .2byte 0x0 + bb6: f805 .2byte 0xf805 + bb8: 4901 .2byte 0x4901 + bba: 0011 .2byte 0x11 + bbc: 0600 .2byte 0x600 + bbe: 01f9 .2byte 0x1f9 + bc0: 0000315b .4byte 0x315b + bc4: fa05 .2byte 0xfa05 + bc6: 7c01 .2byte 0x7c01 + bc8: 06000003 lb x0,96(x0) # 60 <_Z6strlenPKc+0x18> + bcc: 206e01fb .4byte 0x206e01fb + bd0: 0000 .2byte 0x0 + bd2: fc05 .2byte 0xfc05 + bd4: 8401 .2byte 0x8401 + bd6: 001e .2byte 0x1e + bd8: 0600 .2byte 0x600 + bda: 01fd .2byte 0x1fd + bdc: 1109 .2byte 0x1109 + bde: 0000 .2byte 0x0 + be0: fe05 .2byte 0xfe05 + be2: 1f01 .2byte 0x1f01 + be4: 0022 .2byte 0x22 + be6: 0600 .2byte 0x600 + be8: 01ff 2078 0000 8005 .byte 0xff, 0x01, 0x78, 0x20, 0x00, 0x00, 0x05, 0x80, 0x02, 0x12 + bf0: 1202 + bf2: 0012 .2byte 0x12 + bf4: 0600 .2byte 0x600 + bf6: 0281 .2byte 0x281 + bf8: 00002077 .4byte 0x2077 + bfc: 8205 .2byte 0x8205 + bfe: dd02 .2byte 0xdd02 + c00: 0029 .2byte 0x29 + c02: 0000 .2byte 0x0 + c04: 0005 .2byte 0x5 + c06: 3002 .2byte 0x3002 + 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: 00003527 .4byte 0x3527 + c1c: 03040403 lb x8,48(x8) # 33323030 <__BSS_END__+0x333108fc> + c20: b607020b .4byte 0xb607020b + c24: 0008 .2byte 0x8 + c26: 0400 .2byte 0x400 + c28: 0d05 .2byte 0xd05 + c2a: 1abd .2byte 0x1abd + c2c: 0000 .2byte 0x0 + c2e: 0404 .2byte 0x404 + c30: 0004 .2byte 0x4