mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-05 22:18:16 +01:00
A32: Implement ARM-mode RBIT
This commit is contained in:
parent
b2f7a0e7ba
commit
7305d13221
5 changed files with 39 additions and 3 deletions
|
|
@ -763,9 +763,10 @@ TEST_CASE("Fuzz ARM reversal instructions", "[JitX64][A32]") {
|
|||
};
|
||||
|
||||
const std::array rev_instructions = {
|
||||
InstructionGenerator("cccc011010111111dddd11110011mmmm", is_valid),
|
||||
InstructionGenerator("cccc011010111111dddd11111011mmmm", is_valid),
|
||||
InstructionGenerator("cccc011011111111dddd11111011mmmm", is_valid),
|
||||
InstructionGenerator("cccc011011111111dddd11110011mmmm", is_valid), // RBIT
|
||||
InstructionGenerator("cccc011010111111dddd11110011mmmm", is_valid), // REV
|
||||
InstructionGenerator("cccc011010111111dddd11111011mmmm", is_valid), // REV16
|
||||
InstructionGenerator("cccc011011111111dddd11111011mmmm", is_valid), // REVSH
|
||||
};
|
||||
|
||||
SECTION("Reverse tests") {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue