mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-23 05:05:46 +00:00
Shaders: Implemented the FMNMX shader instruction.
This commit is contained in:
parent
60644b9655
commit
12d6b53e60
2 changed files with 26 additions and 6 deletions
|
@ -193,6 +193,11 @@ union Instruction {
|
|||
BitField<50, 1, u64> abs_d;
|
||||
BitField<56, 1, u64> negate_imm;
|
||||
|
||||
union {
|
||||
BitField<39, 3, u64> pred;
|
||||
BitField<42, 1, u64> negate_pred;
|
||||
} fmnmx;
|
||||
|
||||
float GetImm20_19() const {
|
||||
float result{};
|
||||
u32 imm{static_cast<u32>(imm20_19)};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue