all: move mach.Timer, core Timer/Frequency to mach.time module

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2024-08-25 14:24:09 -07:00
parent d62ddbb6cd
commit 133c89638b
16 changed files with 90 additions and 110 deletions

11
src/time/main.zig Normal file
View file

@ -0,0 +1,11 @@
pub const std = @import("std");
pub const ns_per_s = std.time.ns_per_s;
pub const Timer = @import("Timer.zig");
pub const Frequency = @import("Frequency.zig");
test {
_ = Timer;
_ = Frequency;
}