
    org 1D00H
    jb 90h, L1  ; If the TXD pin is one execute user code
L2: jnb 90H, L2 ; If the TXD pin is zero run the bootloader
    ljmp 1F00H  ; The entry point for the ISP bootloader
L1: ljmp 0      ; The entry point for the user code
    end
