Skip to content

Commit

Permalink
Add missing pmultw instruction
Browse files Browse the repository at this point in the history
  • Loading branch information
chaoticgd committed Oct 4, 2023
1 parent 537b5e1 commit c059e6d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions data/languages/eecore.sinc
Original file line number Diff line number Diff line change
Expand Up @@ -365,6 +365,7 @@ $(row) _pmthllw; :pmthl.lw RS128src is RS128src
$(row) _pmtlo; :pmtlo RS128src is RS128src & mmiop=0x9 & fct=0x29 { _pmtlo(RS128src); } # (lo, hi)
$(row) _pmulth; :pmulth RD128, RS128src, RT128src is RD128 & RS128src & RT128src & mmiop=0x1c & fct=0x9 { RD128 = _pmulth(RS128src, RT128src); } # (lo, hi)
$(row) _pmultuw; :pmultuw RD128, RS128src, RT128src is RD128 & RS128src & RT128src & mmiop=0xc & fct=0x29 { RD128 = _pmultuw(RS128src, RT128src); } # (lo, hi)
$(row) _pmultw; :pmultw RD128, RS128src, RT128src is RD128 & RS128src & RT128src & mmiop=0xc & fct=0x9 { RD128 = _pmultw(RS128src, RT128src); } # (lo, hi)
$(row) _pnor; :pnor RD128, RS128src, RT128src is RD128 & RS128src & RT128src & mmiop=0x13 & fct=0x29 { RD128 = _pnor(RS128src, RT128src); }
$(row) _por; :por RD128, RS128src, RT128src is RD128 & RS128src & RT128src & mmiop=0x12 & fct=0x29 { RD128 = _por(RS128src, RT128src); }
$(row) _ppac5; :ppac5 RD128, RT128src is RD128 & RT128src & mmiop=0x1f & fct=0x8 { RD128 = _ppac5(RT128src); }
Expand Down

0 comments on commit c059e6d

Please sign in to comment.