mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-02 12:44:34 +01:00
TranslateArm: Implement QSUB8.
This commit is contained in:
parent
86fe29c6d2
commit
127fbe99cb
7 changed files with 26 additions and 5 deletions
|
|
@ -829,8 +829,9 @@ TEST_CASE("Fuzz ARM parallel instructions", "[JitX64]") {
|
|||
return Bits<0, 3>(instr) != 0b1111 && Bits<12, 15>(instr) != 0b1111 && Bits<16, 19>(instr) != 0b1111;
|
||||
};
|
||||
|
||||
const std::array<InstructionGenerator, 1> saturating_instructions = {{
|
||||
const std::array<InstructionGenerator, 2> saturating_instructions = {{
|
||||
InstructionGenerator("cccc01100110nnnndddd11111111mmmm", is_valid), // UQSUB8
|
||||
InstructionGenerator("cccc01100010nnnndddd11111111mmmm", is_valid), // QSUB8
|
||||
}};
|
||||
|
||||
SECTION("Parallel Add/Subtract (Saturating)") {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue