From 06f7d28e52656c20e6ab968b0bcc2a3a2fb66f31 Mon Sep 17 00:00:00 2001 From: 1superchip <1superchip@gmail.com> Date: Tue, 3 Mar 2026 10:52:42 -0600 Subject: [PATCH] Add xenon arch settings for xbox 360 --- diff.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/diff.py b/diff.py index 3440774..eccd80c 100755 --- a/diff.py +++ b/diff.py @@ -2987,6 +2987,10 @@ class ArchSettings: proc=AsmProcessorPPC, ) +PPC_XENON_SETTINGS = replace( + PPC_SETTINGS, name="ppc_xenon", arch_flags=["-m", "powerpc"] +) + X86_SETTINGS = ArchSettings( name="x86", re_int=re.compile(r"[0-9]+"), @@ -3097,6 +3101,7 @@ class ArchSettings: ARMEL_SETTINGS, AARCH64_SETTINGS, PPC_SETTINGS, + PPC_XENON_SETTINGS, X86_SETTINGS, I686_SETTINGS, SH2_SETTINGS,