blob: db0700da535d6a10cbd12c1170eb03ae25b14b26 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include "hypervisor.h"
#include "errcatch.h"
#include "io.h"
#include "modes.h"
#include "sercomm.h"
void w2_hypervisor_main() {
w2_sercomm_main();
w2_errcatch_main();
w2_io_main();
// start timer
w2_modes_main();
// stop timer
// throw error if cycle expired
}
|