the orginally is
mov ax, 0FFFFh; <--- in this mov 0FFFFh = -1, I get it
inc ax, 0FFFFh; <--- bc increment by 1, so is 0, it will become 0000h, I get it
can someone help me to explain why the answer is FF00h for this variation?
mov ax, 0FFFFh;
inc al;