mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 22:00:39 -06:00
PPCTables: Remove FL_OUT_S.
This is unused, and since it had the same value as FL_OUT_D, it was unnecessarily setting the rS register as an output, even on instructions that only have FL_OUT_D set.
This commit is contained in:
@ -31,7 +31,6 @@ enum
|
||||
FL_IN_A0B = FL_IN_A0 | FL_IN_B,
|
||||
FL_IN_A0BC = FL_IN_A0 | FL_IN_B | FL_IN_C,
|
||||
FL_OUT_D = (1<<13), // rD is used as a destination.
|
||||
FL_OUT_S = FL_OUT_D, // rS is used as a destination.
|
||||
FL_OUT_A = (1<<14), // rA is used as a destination.
|
||||
FL_OUT_AD = FL_OUT_A | FL_OUT_D,
|
||||
FL_TIMER = (1<<15), // Used only for mftb.
|
||||
|
Reference in New Issue
Block a user