From 3583e1754f9025edf74db868cbf5eda4bb2176f2 Mon Sep 17 00:00:00 2001 From: Stephen Gutekanst Date: Tue, 9 Apr 2024 18:53:18 -0700 Subject: [PATCH] core: add a TODO regarding module API Signed-off-by: Stephen Gutekanst --- src/Core.zig | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Core.zig b/src/Core.zig index 043f980e..a9e08547 100644 --- a/src/Core.zig +++ b/src/Core.zig @@ -1,6 +1,9 @@ const std = @import("std"); const mach = @import("main.zig"); +// TODO(important): mach.core has a lot of standard Zig APIs, and some global variables, which are +// part of its old API design. We should elevate them into this module instead. + pub const name = .mach_core; pub const Mod = mach.Mod(@This());