In 8086 assembly, 'INC AX' increments the 16-bit AX register as a single unit. To increment the 8-bit high (AH) and low (AL) parts individually, you must use separate instructions: 'INC AL' and 'INC AH'. Note that 'INC AX' might produce a different result if AL overflows.