mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-04 13:44:31 +01:00
TranslateArm: Implement VPUSH and VPOP.
This commit is contained in:
parent
9c82a12f8f
commit
30f3d869cc
6 changed files with 118 additions and 2 deletions
|
|
@ -89,6 +89,8 @@ boost::optional<const VFP2Matcher<V>&> DecodeVFP2(u32 instruction) {
|
|||
INST(&V::vfp2_VABS, "VABS", "cccc11101D110000dddd101z11M0mmmm"),
|
||||
INST(&V::vfp2_VNEG, "VNEG", "cccc11101D110001dddd101z01M0mmmm"),
|
||||
INST(&V::vfp2_VSQRT, "VSQRT", "cccc11101D110001dddd101z11M0mmmm"),
|
||||
INST(&V::vfp2_VPUSH, "VPUSH", "cccc11010D101101dddd101zvvvvvvvv"),
|
||||
INST(&V::vfp2_VPOP, "VPOP", "cccc11001D111101dddd101zvvvvvvvv"),
|
||||
// VCMP
|
||||
// VCMPE
|
||||
// VCVT
|
||||
|
|
@ -98,12 +100,10 @@ boost::optional<const VFP2Matcher<V>&> DecodeVFP2(u32 instruction) {
|
|||
// VSTR
|
||||
// VSTM
|
||||
// VSTMDB
|
||||
// VPUSH
|
||||
INST(&V::vfp2_VLDR, "VLDR", "cccc1101UD01nnnndddd101zvvvvvvvv"),
|
||||
INST(&V::vfp2_VSTR, "VSTR", "cccc1101UD00nnnndddd101zvvvvvvvv"),
|
||||
// VLDM
|
||||
// VLDMDB
|
||||
// VPOP
|
||||
|
||||
#undef INST
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue