Rot127

Results 545 comments of Rot127

Seems to be specific to `x86` (but likely some other none Auto-Sync archs). Because the printer doesn't use the `printInt...` functions from `SStream.c`: https://github.com/capstone-engine/capstone/blob/5058c6342e42d52f35b79dd95f4a19f99b7c479b/arch/X86/X86ATTInstPrinter.c#L267-L279

Fixing the `cmd_debug.c` case it not possible easily. The issue is fundamentally that Core and Bin are not separated well enough. `RzCoreBin` implements the whole printing of sections and other...

Same problem for `egg_Cfile.c` unfortunately. The other one is a search. It makes more sense to refactor the search before removing it.

So the `cmd_debug.c` could be resolved apparently. I found a case where they simply backed up `core->bin`, set it to the library object, read symbols and other stuff and then...

This is also available with 2.0: ``` cstool hppa20w 000841c8 0 00 08 41 c8 movb r1,rp,0x408 ``` If it is not in the ISA, it either is a custom...

@Antelox Please review as well. I can't download the test logs (some Github bug as it looks like) to confirm everything went through without bugs. So mark it as draft...

You mean renaming it to `cs_...` and adding a compatibility header which does: ```c #define bpf_insn cs_bpf_insn ``` This is what we did for the `ARM64` `AArch64` thing already. Seems...

> keep the old names, dont remove them. Yeah, agree. The old names have to stay. Be it via compatibility header or not. But people shouldn't be forced to do...

Thanks for this contribution! I hope I find some time later this week to read into Swift. I never used it. What would be your way to test these bindings?

> I will write some test cases later or use existing test code to build a test module. Once completed, you just need to run the swift test command. Nice!...