1# Source file used to test the and, andhi and andi instructions
2
3foo:
4	and	r4,r4,r4
5	andi	r4,r4,0x7fff
6	andi	r4,r4,0x8000
7	andi	r4,r4,0xffff
8	andi	r4,r4,0x0
9	andhi	r4,r4,0x7fff
10	andhi	r4,r4,0x8000
11	andhi	r4,r4,0xffff
12	andhi	r4,r4,0x0
13
14