Antoine Chapel
Antoine Chapel
I've also spotted another problem but that happens in very rare cases. In qdb/render/render.py : context_asm function : ```python lines = {} past_list = [] from_addr = self.cur_addr - self.disasm_num...
Hi @elicn ! For the first issue, I am doing baremetal emulation using Cortex_A7 Arm CPU and qdb. The qiling script is described above, I am using QL_OS.BLOB as ostype...
For the second one, I've seen your modification on the dev branch which handles this. What do you mean by failing gracefully ? I've tested and got this : ```...
Hi @elicn, Yes of course, here is a zip with all you need to reproduce the problem : brom is a bootrom binary developed for cortex A7 (it comes from...
No problem. Yes I agree with you observation. To answer your (question), yes for this type of binary the ```load_address``` value is the same as the ```entry_point```. If I could...
@elicn Thanks for the rapid feedback ! I've tested with my own setup and all of the things discussed above are solved. I've also tested the highest code limit in...
Just looked around for the bug you described : only happens with branch using immediate. Is due to this : in captsone in the ```arm.py``` file : ```python class ArmOpValue(ctypes.Union):...
Point out exactly the same problem as https://github.com/qilingframework/qiling/issues/1377#issuecomment-2129839355
I also forgot to mention this but maybe an improvement could be done in the way the covered blocks (or instructions) are stored. For now, each time a block is...
Hey ! Thanks for your answer ! - Yeah, add the images attribute in the blob class was the fix I adopted in my setup. - I tried your fix,...