Skip to content

Commit

Permalink
Add MOV and MOVS tests for [AL]SR
Browse files Browse the repository at this point in the history
  • Loading branch information
W0ni committed Mar 14, 2024
1 parent 1885f3c commit 16cc7d3
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion test/arch/arm/arch.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,12 @@ def u16swap(i):
'110f111e'),
('XXXXXXXX MCRCC p15, 0x0, R8, c2, c0, 0x1',
'308f023e'),

('XXXXXXXX MOV R4, R4 ASR 0x20',
'4440a0e1'),
('XXXXXXXX MOV R2, R5 LSR 0x20',
'2520a0e1'),
('XXXXXXXX MOVS R2, R5 LSR 0x20',
'2520b0e1'),

]
ts = time.time()
Expand Down

0 comments on commit 16cc7d3

Please sign in to comment.