From c49f7fbffdc15a67cce4d6f144b0f3488e34a5e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20R=C3=B8nne=20Petersen?= Date: Fri, 22 May 2026 02:51:17 +0200 Subject: [PATCH] std.Target: make m68030 the baseline for m68k It's the oldest model that has an integrated MMU. --- lib/std/Target.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/std/Target.zig b/lib/std/Target.zig index d00c834257..252cdd0859 100644 --- a/lib/std/Target.zig +++ b/lib/std/Target.zig @@ -2062,7 +2062,7 @@ pub const Cpu = struct { .lanai => &lanai.cpu.v11, // clang does not have a generic lanai model. .loongarch32 => &loongarch.cpu.la32v1_0, .loongarch64 => &loongarch.cpu.la64v1_0, - .m68k => &m68k.cpu.M68000, + .m68k => &m68k.cpu.M68030, .mips => &mips.cpu.mips32r2, .mipsel => switch (os.tag) { .psp => &mips.cpu.allegrex,