mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2025-12-26 17:24:57 +01:00
TranslateArm: Implement VSTR.
This commit is contained in:
parent
df39308e03
commit
8e8db6e137
6 changed files with 29 additions and 2 deletions
|
|
@ -423,10 +423,11 @@ TEST_CASE("VFP: VMOV", "[JitX64][vfp]") {
|
|||
}
|
||||
|
||||
|
||||
TEST_CASE("VFP: VMOV (reg), VLDR", "[JitX64][vfp]") {
|
||||
const std::array<InstructionGenerator, 2> instructions = {{
|
||||
TEST_CASE("VFP: VMOV (reg), VLDR, VSTR", "[JitX64][vfp]") {
|
||||
const std::array<InstructionGenerator, 3> instructions = {{
|
||||
InstructionGenerator("cccc11101D110000dddd101z01M0mmmm"),
|
||||
InstructionGenerator("cccc1101UD01nnnndddd101zvvvvvvvv"),
|
||||
InstructionGenerator("cccc1101UD00nnnndddd101zvvvvvvvv"),
|
||||
}};
|
||||
|
||||
FuzzJitArm(1, 1, 10000, [&instructions]() -> u32 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue