split into separate files + work on device API.

This commit is contained in:
Jackson Netherwood-Imig
2026-02-27 21:53:01 -08:00
parent 25c7cc7395
commit d46ec8aec2
6 changed files with 690 additions and 694 deletions
+4
View File
@@ -25,4 +25,8 @@ pub fn build(b: *std.Build) void {
const run_tests = b.addRunArtifact(test_exe);
const test_step = b.step("test", "Run tests.");
test_step.dependOn(&run_tests.step);
const check_obj = b.addObject(.{ .name = "check", .root_module = drm });
const check_step = b.step("check", "ZLS check");
check_step.dependOn(&check_obj.step);
}