disassembler
Here are 459 public repositories matching this topic...
-
Updated
May 21, 2022 - Java
-
Updated
May 21, 2022 - C++
-
Updated
May 5, 2022 - C
Tl;dr: Use the workaround from https://github.com/pwndbg/pwndbg/pull/322/files only for broken gdb versions
-
Updated
Mar 28, 2022 - Python
It's currently always using mov rAX,[moffs]
but if it fits in an i32
, it's shorter to use mov rAX,[m]
with a modrm byte.
The generated mov()
methods would need to be updated. This is what the generated C# code looks like:
if (dst.Value == Register.RAX && Bitness == 64 && src.IsDisplacementOnly) {
code = Code.Mov_RAX_moffs64;
An extra check would need to be adde
-
Updated
May 21, 2022 - C#
-
Updated
Apr 26, 2022 - C++
-
Updated
May 21, 2022 - C++
-
Updated
May 21, 2022 - C
-
Updated
May 18, 2022 - Python
-
Updated
May 21, 2022 - C++
-
Updated
May 19, 2022 - C++
-
Updated
Dec 17, 2020 - Python
-
Updated
Nov 25, 2020 - Python
FEATURE REQUEST
Sent by Muhammed Hussain (muhammedhussain1990@gmail.com). Created by fire.
Create search option for in search of lib.so files
-
Updated
Dec 20, 2021 - C++
-
Updated
Mar 15, 2022 - F#
-
Updated
Feb 8, 2022 - Python
-
Updated
Dec 20, 2021 - C++
-
Updated
May 15, 2022 - C++
-
Updated
Aug 7, 2020 - Python
-
Updated
Jul 20, 2021 - WebAssembly
-
Updated
May 18, 2022 - C++
-
Updated
May 30, 2020 - Python
Improve this page
Add a description, image, and links to the disassembler topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the disassembler topic, visit your repo's landing page and select "manage topics."
Feature type
Quality of life
Describe the feature
I would like to be able to use relative paths in the launcher settings file to point to
x32dbg.exe
andx64dbg.exe
respectively. I've already tried editing the file manually and assuming my implementation (.\
/\
//
) isn't wrong, the launcher seemingly refuses the use of relative paths.