fanfuqiang
fanfuqiang
call `cmake` generate `capstone/Makefile` first, please.
So how to describe the relations between _CMakeLists.txt_ and the _Makefile_ of the root directory? Is it come from `cmake` generate? If not, what's the purpose of _CMakeLists.txt_? Of course,...
sorry, let me check.
> I looked at the mapping file, and think the bug is elsewhere. Is RET just an alias? If so, you may forget to map alias mnemonic back to alias...
Specification of riscv has: `Pseudoinstruction: ret` equals `Base Instructions: jalr x0, x1, 0; auipc x6, offset[31:12]` for legibility. so as `ret` is not a real Instruction in chip. I had...
@radare @aquynh Sorry, guys, my mistake. Actually, `ret` only ALIAS ` jalr x0, x1, 0`. The bad typesetting of RISCV specification makes me blind. For now, I use an [easy...