zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit c49f7fbffdc15a67cce4d6f144b0f3488e34a5e3 (tree)
parent 0b00adc6fcfb78991d1873056b447a248a0f702b
Author: Alex Rønne Petersen <alex@alexrp.com>
Date:   Fri, 22 May 2026 02:51:17 +0200

std.Target: make m68030 the baseline for m68k

It's the oldest model that has an integrated MMU.

Diffstat:
Mlib/std/Target.zig | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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,