Implement V_BFM_B32 and V_FFBH_U32 (#663)

* Implement V_BFM_B32

* Render.Recompiler: Implement V_FFBH_U32

* fix clang-format
This commit is contained in:
baggins183 2024-09-01 12:20:42 -07:00 committed by GitHub
parent f514fdfd18
commit 101aeb920d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 27 additions and 0 deletions

View file

@ -189,6 +189,8 @@ public:
void V_CMP_CLASS_F32(const GcnInst& inst);
void V_FFBL_B32(const GcnInst& inst);
void V_MBCNT_U32_B32(bool is_low, const GcnInst& inst);
void V_BFM_B32(const GcnInst& inst);
void V_FFBH_U32(const GcnInst& inst);
// Vector Memory
void BUFFER_LOAD(u32 num_dwords, bool is_typed, const GcnInst& inst);