virtio-serial: Turn props any virtio-serial-bus device must have into bus props
[qemu.git] / tests / lm32 / test_andi.S
blobda1b0a32f787ba49c42c0fe602e92955b3e9aada
1 .include "macros.inc"
3 start
5 test_name ANDI_1
6 mvi r1, 0
7 andi r3, r1, 0
8 check_r3 0
10 test_name ANDI_2
11 mvi r1, 1
12 andi r3, r1, 1
13 check_r3 1
15 test_name ANDI_3
16 load r1 0x000f0000
17 andi r3, r1, 1
18 check_r3 0
20 test_name ANDI_4
21 load r1 0xffffffff
22 andi r3, r1, 0xffff
23 check_r3 0xffff
25 test_name ANDI_5
26 load r1 0xffffffff
27 andi r3, r1, 0
28 check_r3 0
30 test_name ANDI_6
31 load r3 0xffff55aa
32 andi r3, r3, 0xaaaa
33 check_r3 0x000000aa
35 end