mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-13 11:47:50 +00:00
Shader_IR: Implement FLO instruction.
This commit is contained in:
parent
cb07d60362
commit
6267529837
5 changed files with 35 additions and 0 deletions
|
@ -799,6 +799,12 @@ union Instruction {
|
|||
BitField<40, 1, u64> invert;
|
||||
} popc;
|
||||
|
||||
union {
|
||||
BitField<41, 1, u64> sh;
|
||||
BitField<40, 1, u64> invert;
|
||||
BitField<48, 1, u64> is_signed;
|
||||
} flo;
|
||||
|
||||
union {
|
||||
BitField<39, 3, u64> pred;
|
||||
BitField<42, 1, u64> neg_pred;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue