diff options
| author | GasInfinity <me@gasinfinity.dev> | 2025-08-21 13:27:13 +0200 |
|---|---|---|
| committer | Alex Rønne Petersen <alex@alexrp.com> | 2025-08-22 04:14:53 +0200 |
| commit | 851f31b0e14fd3fd420dadcb042d9da3adadd06d (patch) | |
| tree | 1797d8a953cbaa0632bc7543680c388cb49dd817 | |
| parent | cc71936eb9ddb94b163b296e5a8e8c3f2f7c87d4 (diff) | |
| download | zig-851f31b0e14fd3fd420dadcb042d9da3adadd06d.tar.gz zig-851f31b0e14fd3fd420dadcb042d9da3adadd06d.zip | |
chore(std.Target): document the 3ds version range
| -rw-r--r-- | lib/std/Target.zig | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/std/Target.zig b/lib/std/Target.zig index 3ec14336c8..287be4e67d 100644 --- a/lib/std/Target.zig +++ b/lib/std/Target.zig @@ -609,6 +609,11 @@ pub const Os = struct { }, .@"3ds" => .{ .semver = .{ + // These signify release versions (https://www.3dbrew.org/wiki/NCCH/Extended_Header#ARM11_Kernel_Capabilities) + // which are different from user-facing system versions (https://www.3dbrew.org/wiki/Home_Menu#System_Versions_List). + // + // Multiple system versions could refer to the same release version. + // The comment indicates the system version that release version was introduced (for minimum) and the latest (for maximum). .min = .{ .major = 2, .minor = 27, .patch = 0 }, // 1.0.0-0 .max = .{ .major = 2, .minor = 58, .patch = 0 }, // 11.17.0-50 }, |
