mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-02 12:44:34 +01:00
VFP: Implement VLDR
This commit is contained in:
parent
a2c2db277b
commit
3a465ba4a8
5 changed files with 40 additions and 1 deletions
|
|
@ -419,6 +419,18 @@ TEST_CASE("VFP: VMOV", "[JitX64][vfp]") {
|
|||
});
|
||||
}
|
||||
|
||||
|
||||
TEST_CASE("VFP: VMOV (reg), VLDR", "[JitX64][vfp]") {
|
||||
const std::array<InstructionGenerator, 2> instructions = {{
|
||||
InstructionGenerator("cccc11101D110000dddd101z01M0mmmm"),
|
||||
InstructionGenerator("cccc1101UD01nnnndddd101zvvvvvvvv"),
|
||||
}};
|
||||
|
||||
FuzzJitArm(1, 1, 10000, [&instructions]() -> u32 {
|
||||
return instructions[RandInt<size_t>(0, instructions.size() - 1)].Generate();
|
||||
});
|
||||
}
|
||||
|
||||
TEST_CASE("Fuzz ARM data processing instructions", "[JitX64]") {
|
||||
const std::array<InstructionGenerator, 16> imm_instructions = {
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue