shader_recompiler: Implement S_SUBB_U32 instruction (#2796)

* add S_SUBB_U32 instruction

* add missing case

* move case to match enum
This commit is contained in:
Fire Cube 2025-04-16 23:24:18 +02:00 committed by GitHub
parent ddf3df7f56
commit aa8dab5371
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 14 additions and 0 deletions

View file

@ -80,6 +80,7 @@ public:
// SOP2
void S_ADD_U32(const GcnInst& inst);
void S_SUB_U32(const GcnInst& inst);
void S_SUBB_U32(const GcnInst& inst);
void S_ADD_I32(const GcnInst& inst);
void S_SUB_I32(const GcnInst& inst);
void S_ADDC_U32(const GcnInst& inst);