Ayush Goyal

Results 10 comments of Ayush Goyal

`rdtsc` is a CPU instruction, not a register. The `dr` command only works with registers, so trying `dr rdtsc` will correctly produce an error. @gogo2464

I think this issue has been fixed in the latest release. It should have been closed.

I am willing to work on this issue. Please assign it to me.

@WerWolv Can you please look into it and let me know if further changes are required?

Hi! I believe the issue here is most likely related to an incorrect `REX byte` calculation. I have implemented the correct method for computing the `REX` prefix. The problem I...

Hi! @Rot127 I just wanted to confirm whether I am in the right direction. I am thinking of the following approach (on the suggestion of array of global variables): Adding...

Okay, I'll raise a PR soon once I am comfortable with `IL related code`

Hi @notxvilka Though I have added the support for mouse click (for `px` mode). Do we need to add support for other modes like - `pxw, pxr, pxa, pxb, pxq,...

``` RZ_IPI void rz_core_visual_applyHexMode(RzCore *core, int hexMode) { RzCoreVisual *visual = core->visual; visual->currentFormat = RZ_ABS(hexMode) % PRINT_HEX_FORMATS; switch (visual->currentFormat) { case 0: /* px */ case 3: /* prx */...