authorgravatar for me@gasinfinity.devGasInfinity <me@gasinfinity.dev> 2025-08-21 13:27:13+02:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-08-22 04:14:53+02:00
log851f31b0e14fd3fd420dadcb042d9da3adadd06d
tree1797d8a953cbaa0632bc7543680c388cb49dd817
parentcc71936eb9ddb94b163b296e5a8e8c3f2f7c87d4

chore(std.Target): document the 3ds version range


1 files changed, 5 insertions(+), 0 deletions(-)

lib/std/Target.zig+5
...@@ -609,6 +609,11 @@ pub const Os = struct {...@@ -609,6 +609,11 @@ pub const Os = struct {
609 },609 },
610 .@"3ds" => .{610 .@"3ds" => .{
611 .semver = .{611 .semver = .{
612 // These signify release versions (https://www.3dbrew.org/wiki/NCCH/Extended_Header#ARM11_Kernel_Capabilities)
613 // which are different from user-facing system versions (https://www.3dbrew.org/wiki/Home_Menu#System_Versions_List).
614 //
615 // Multiple system versions could refer to the same release version.
616 // The comment indicates the system version that release version was introduced (for minimum) and the latest (for maximum).
612 .min = .{ .major = 2, .minor = 27, .patch = 0 }, // 1.0.0-0617 .min = .{ .major = 2, .minor = 27, .patch = 0 }, // 1.0.0-0
613 .max = .{ .major = 2, .minor = 58, .patch = 0 }, // 11.17.0-50618 .max = .{ .major = 2, .minor = 58, .patch = 0 }, // 11.17.0-50
614 },619 },