blob: 35fa64c0dda94fb94ed0b9e20a3de381bde58ac1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
#include <stdint.h>
extern uint64_t g_w2_hypervisor_cycles;
/**
* backbone of all other modules
*
* stores global variables and controls when other modules run
*/
void w2_hypervisor_main();
|