Blame | Last modification | View Log | Download | RSS feed
ifndef __uartinc ; avoid multiple inclusion__uartinc equ 1savelisting off ; no listing over this file;****************************************************************************;* *;* AS 1.42 - File UART.INC *;* *;* contains SFR and Bit Definitions for ST62xx UART *;* *;****************************************************************************UARTDR sfr 0d6h ; UART Data RegisterUARTCR sfr 0d7h ; UART Control RegisterRXRDY bit 7,UARTCR ; Receiver ReadyTXMT bit 6,UARTCR ; Transmitter EmptyRXIEN bit 5,UARTCR ; Receive Interrupt EnableTXIEN bit 4,UARTCR ; Transmit Interrupt EnableBR bfield UARTCR,1,3 ; Baudrate SelectPTYEN bit 0,UARTCR ; Parity/Data Bit 8restoreendif ; __uartinc