Vito Plantamura
Vito Plantamura
yes this is a well known problem: some of the debugger logic needs to be copied into KDCOM: when you press PrintScr, an INT3 is executed in the kernel: KDCOM...
hi Luca, I need to take a better look at your changes, but in the meantime I will try to answer your questions: 1) What happens when you modify the...
hi Luca, For the changed registers color, the code could detect the condition where the color is equal to the new background color, and then use a map of default...
Perfect! :-) Thanks, --vito
hi Luca, I need to take a better look at your changes, but in the meantime I will try to answer your questions: 1) You should not check for "Wnd::nrmClr...
hi Luca, here are some considerations/notes: 1) please remove the NegateByte method and replace it with these two methods: eastl::string Utils::GetColor( BYTE clr ) { return HexToString(clr, sizeof(BYTE)); } eastl::string...
hi Luca, No need to apologize, we are here to enjoy ourselves writing software! > but are you sure you want a Wnd reference in Utils? you are right! But...
hi Luca, try this version. The code I added is in bold: eastl::string GetColorSpecial( BYTE clr ) { if ( ! ( clr & 0xF0 ) ) clr |= Wnd::nrmClr...
hi Luca, one last thing: can you remove the "ULONG size" parameter from ParseListOfBytesArgs (since it is not used anymore)? thanks, --Vito
Hi, BugChecker is not so well tested on bare metal, however I guess that this problem is linked to this other issue: https://github.com/vitoplantamura/BugChecker/issues/2 , since you said that the problem...