Files
TCPU/src/VM/time.h
2025-03-09 18:35:56 +05:00

9 lines
143 B
C

#pragma once
#include "../std.h"
void time_sleepMS(u32 ms);
void time_sleepNS(u64 ns);
u64 time_getMonotonicMS();
u64 time_getMonotonicNS();