Hello,
The 16-bit AX register contains two 8-bit registers, AH and AL.
By saying 'mov ax, 0x13' you are actually saying 'mox ax,0x0013' which means 'mov ah,0x00', 'mov al,0x13'.
So, you are doing it twice.
The code you write is supposed to be 'mov ah,0x00', 'mov al,0x13', or 'mov ax,0x13'...