c/cpp files

This commit is contained in:
Nikzad 2026-08-06 21:13:03 +03:30
parent 128c9fac77
commit 2dfbf46e51
9 changed files with 461 additions and 1 deletions

View file

@ -1043,5 +1043,35 @@ hyperdbg_u_request_cpuid(UINT32 FunctionId, UINT32 SubFunctionId)
//
CommandCpuidRequestCpuid(FunctionId, SubFunctionId);
return TRUE;
}
/**
* @brief I/O instruction (IN)
*
* @param InRequest
*
* @return BOOLEAN TRUE if successful, FALSE otherwise
*/
BOOLEAN
hyperdebg_u_in_instruction(DEBUGGER_USER_IN_REQUEST_RESPONSE InRequest)
{
CommandUserInRequest(InRequest);
return TRUE;
}
/**
* @brief I/O instruction (OUT)
*
* @param OutRequest
*
* @return BOOLEAN TRUE if successful, FALSE otherwise
*/
BOOLEAN
hyperdebg_u_out_instruction(DEBUGGER_USER_OUT_REQUEST_RESPONSE OutRequest)
{
CommandUserOutRequest(OutRequest);
return TRUE;
}