#include #include #include uint32_t sys_getch() { sti(); uint32_t key = getch(); cli(); return key; }