1	.text
2	.org 0
3
4	;; SLI/SLL instruction test
5
6;SLI
7	sli a
8	sli b
9	sli c
10	sli d
11	sli e
12	sli h
13	sli l
14	sli (hl)
15	sli (ix+7)
16	sli (iy-9)
17
18;SLL is alias for SLI
19	sll a
20	sll b
21	sll c
22	sll d
23	sll e
24	sll h
25	sll l
26	sll (hl)
27	sll (ix+7)
28	sll (iy-9)
29