mirror of
https://github.com/HyperDbg/HyperDbg.git
synced 2026-07-20 22:44:41 +00:00
29 lines
575 B
C
29 lines
575 B
C
/**
|
|
* @file mock.c
|
|
* @author Sina Karvandi (sina@hyperdbg.org)
|
|
* @brief Mock user-mode application for testing the HyperDbg
|
|
* @details
|
|
* @version 0.19
|
|
* @date 2026-04-28
|
|
*
|
|
* @copyright This project is released under the GNU Public License v3.
|
|
*
|
|
*/
|
|
#include "pch.h"
|
|
|
|
int
|
|
main(void)
|
|
{
|
|
printf("Hello world HyperDbg!\n");
|
|
|
|
//////////////////////////////////////////////////////////////
|
|
//
|
|
// Test for working intrinsics
|
|
//
|
|
CpuReadTsc();
|
|
CpuCpuId(NULL, 0);
|
|
|
|
//////////////////////////////////////////////////////////////
|
|
|
|
return 0;
|
|
}
|