Enable PS instructions for any 32-bit PPC ELF

Fixes an issue where ProDG for GameCube objects
were not enabling PS instruction support.
This commit is contained in:
Luke Street 2025-08-02 11:36:35 -06:00
parent 91bc23edfc
commit e67d5998b3

View File

@ -66,7 +66,9 @@ impl ArchPpc {
if file.is_64() {
powerpc::Extension::Ppc64 | powerpc::Extension::AltiVec
} else {
powerpc::Extension::AltiVec.into()
// Gekko/Broadway objects often use the EF_PPC_EMB flag,
// but ProDG in particular does not emit it.
powerpc::Extensions::gekko_broadway()
}
}
};