1 2 3 4 5 6 7 8 | 33 D2 xor edx,edx 8B C1 mov eax,ecx F7 F3 div eax,ebx <-- div by 0, 100% for me 44 8B C2 mov r8d,edx 44 8B CA mov r9d,edx 48 8D 14 92 lea rdx,[rdx+rdx*4] 48 03 D2 add rdx,rdx 49 83 3C D3 00 cmp qword ptr [r11+rdx*8],0 |
1 2 3 4 5 6 7 | #include <stdio.h> int main() { printf( "Hello World\n" ); return 0; } |
Recyrillic
- If there is enough stuff in the output, it allways jumps to the bottom even if you scroll it up.
Recyrillic
- There is some problem stepping into functions that you do not have the source code to, (eg VirtualAlloc or FreeConsole are the ones I tested). It gets into an infinite loop.
Recyrillic
- opening a void** (i.e. a HANDLE) in the watch window crashes the program.
Recyrillic
Some other more "feature-like" stuff:
- right now it seems that you can't step into an executable that you do not have the source code to, this might be related to the other observation, that F10 seems to do the same thing as F5 for start up.
Recyrillic
- the page up/ page down for the memory widget should snap to the top/ bottom so that you can view memory along a page boundary more easily.
mrmixer
- Alt GR should not be treated as alt. On my layout Alt GR + space is the combination for underscore and I use underscore in nearly every identifier. In the watch window it changes the focus to the tabs as soon as I release space so it's hard to type anything. And it's harder then necessary to comeback to the edit field using only the keyboard.
mrmixer
- When double clicking on an expression to start editing it, it would be nice to be able to also click on the line to place the cursor.
mrmixer
- When I press Alt or Alt GR when in another windowed application, RemedyBG still get the messages, and the UI is updated which is distracting (tabs lights up).
mrmixer
- The new breakpoint button reads "New..", it's missing one dot.