1; AX forms
2add ax,5
3add ax,strict byte 5
4add ax,strict word 5
5add ax,-128
6add ax,strict byte -128
7add ax,strict word -128
8add ax,0x7f
9add ax,strict byte 0x7f
10add ax,strict word 0x7f
11add ax,0x80
12add ax,strict byte 0x80
13add ax,strict word 0x80
14add ax,0x100
15add ax,strict byte 0x100
16add ax,strict word 0x100
17
18; non-AX forms
19add bx,5
20add bx,strict byte 5
21add bx,strict word 5
22add bx,-128
23add bx,strict byte -128
24add bx,strict word -128
25add bx,0x7f
26add bx,strict byte 0x7f
27add bx,strict word 0x7f
28add bx,0x80
29add bx,strict byte 0x80
30add bx,strict word 0x80
31add bx,0x100
32add bx,strict byte 0x100
33add bx,strict word 0x100
34
35