Google doesn't show the result,
Anyone knows?
Google doesn't show the result,
Anyone knows?
Nothing, as far as I know. It stands for a general purpose register.
The 16 bit AX register can be addressed as AH (high byte) and AL (low byte).
The EAX register is the 32 bit version of the AX register. The E stands for extended.
As Mihai says, it is just a naming convention.
However, given that 'X' is often used for "fill in your value" and is commonly used by mathematicians as the first variable name of choice in equations, and that those particular registers are general purpose (as opposed to say ESP which is the extended (32-bit) stack pointer or EIP the extended instruction pointer) that is perhaps why X is chosen as opposed to say 'B'.
One posible reason I can think of, is to denote that it has not 'normal' state. When talking about serial communication in electronics, if one of the data lines can be anything, you might say its state is X as it is neither/both/either 0 or 1.
Nothing. Intel just thought it looked better if all of the registers had 2-letter names (the 'E' came later).
The X means pair, and goes back to at least the 8080. It had 8-bit registers B,C,D,E,H,L (among others) which could also be used in pairs (BC, DE and HL). The BC and DE pairs were used mostly for 16-bit arithmetic; the HL pair generally held a memory address. Some examples of the usage of X for pair:
LXI D,12ABH ; "load pair immediate"
DCX B ; "decrement pair"
STAX D ; "store A (indirect) at pair"
Fast forward to the 8086. It has registers AL,AH,BL,BH,CL,CH,DL,DH, which, similarly to the 8080, can be used in pairs: AX, BX, CX, DX.
As others have pointed out, the E in the 32-bit register names means extended.