def get_hexasm()

in utils/radare_analyzer.py [0:0]


    def get_hexasm(self, address):
        data = filter(None, self.r2.cmd(f"pxf @ {address}").split("\n")[1:])
        hexasm = ""
        for i in data:
            hexasm += "".join(i.split("  ")[1].split())
        return hexasm