| 1 |
2 |
MichaelA |
;*******************************************************************************
|
| 2 |
|
|
; M16C5x_Tst3.ASM
|
| 3 |
|
|
;
|
| 4 |
|
|
; This is the source for the test program used to develop the PIC16C5x proce-
|
| 5 |
|
|
; core. It has also been used to test the P16C5x version of the PIC16C5x core.
|
| 6 |
|
|
;
|
| 7 |
|
|
; The first instruction of the program is expected to be placed in location 0.
|
| 8 |
|
|
;
|
| 9 |
|
|
; The program tests most instructions, but not is a self-checking manner. In-
|
| 10 |
|
|
; spection of the registers is the method used to verify that the cores are
|
| 11 |
|
|
; operating correctly.
|
| 12 |
|
|
;
|
| 13 |
|
|
;*******************************************************************************
|
| 14 |
|
|
|
| 15 |
|
|
LIST P=16F59, R=DEC
|
| 16 |
|
|
|
| 17 |
|
|
;-------------------------------------------------------------------------------
|
| 18 |
|
|
; Set ScratchPadRam here. If you are using a PIC16C5X device, use:
|
| 19 |
|
|
;ScratchPadRam EQU 0x10
|
| 20 |
|
|
; Otherwise, use:
|
| 21 |
|
|
;ScratchPadRam EQU 0x20
|
| 22 |
|
|
;-------------------------------------------------------------------------------
|
| 23 |
|
|
|
| 24 |
|
|
ScratchPadRAM EQU 0x10
|
| 25 |
|
|
|
| 26 |
|
|
;-------------------------------------------------------------------------------
|
| 27 |
|
|
; Variables
|
| 28 |
|
|
;-------------------------------------------------------------------------------
|
| 29 |
|
|
|
| 30 |
|
|
INDF EQU 0 ; Indirect Register File Access Location
|
| 31 |
|
|
Tmr0 EQU 1 ; Timer 0
|
| 32 |
|
|
PCL EQU 2 ; Low Byte Program Counter
|
| 33 |
|
|
Status EQU 3 ; Processor Status Register
|
| 34 |
|
|
FSR EQU 4 ; File Select Register
|
| 35 |
|
|
PortA EQU 5 ; I/O Port A Address
|
| 36 |
|
|
PortB EQU 6 ; I/O Port B Address
|
| 37 |
|
|
PortC EQU 7 ; I/O Port C Address
|
| 38 |
|
|
|
| 39 |
|
|
SPI_CR EQU 0x0A ; SPI Control Register Shadow/Working Copy
|
| 40 |
|
|
SPI_SR EQU 0x0B ; SPI Status Register Shadow/Working Copy
|
| 41 |
|
|
SPI_DIO_H EQU 0x0C ; 1st byte To/From from SPI Rcv FIFO
|
| 42 |
|
|
SPI_DIO_L EQU 0x0D ; 2nd byte To/From from SPI Rcv FIFO
|
| 43 |
|
|
|
| 44 |
|
|
DlyCntr EQU 0x0F ; General Purpose Delay Counter Register
|
| 45 |
|
|
|
| 46 |
|
|
;-------------------------------------------------------------------------------
|
| 47 |
|
|
; SPI Control Register Bit Map (M16C5x TRIS A register)
|
| 48 |
|
|
;-------------------------------------------------------------------------------
|
| 49 |
|
|
|
| 50 |
|
|
SPI_CR_REn EQU 0 ; Enable MISO Data Capture
|
| 51 |
|
|
SPI_CR_SSel EQU 1 ; Slv Select: 0 - Ext SEEPROM, 1 - SSP_UART
|
| 52 |
|
|
SPI_CR_MD0 EQU 2 ; SPI Md[1:0]: UART - Mode 0 or Mode 3
|
| 53 |
|
|
SPI_CR_MD1 EQU 3 ; SEEPROM - Mode 0 or Mode 3
|
| 54 |
|
|
SPI_CR_BR0 EQU 4 ; SPI Baud Rate: 0 - Clk/2, ... Clk/128
|
| 55 |
|
|
SPI_CR_BR1 EQU 5 ; Default: 110 - Clk/64
|
| 56 |
|
|
SPI_CR_BR2 EQU 6 ; Clk/2 29.4912 MHz
|
| 57 |
|
|
SPI_CR_DIR EQU 7 ; SPI Shift Direction: 0 - MSB, 1 - LSB
|
| 58 |
|
|
|
| 59 |
|
|
;-------------------------------------------------------------------------------
|
| 60 |
|
|
; SPI Status Register Bit Map (M16C5x Port A input)
|
| 61 |
|
|
;-------------------------------------------------------------------------------
|
| 62 |
|
|
|
| 63 |
|
|
SPI_SR_TF_EF EQU 0 ; SPI TF Empty Flag (All Data Transmitted)
|
| 64 |
|
|
SPI_SR_TF_FF EQU 1 ; SPI TF Full Flag (Possible Overrun Error)
|
| 65 |
|
|
SPI_SR_RF_EF EQU 2 ; SPI RF Empty Flag (Data Available)
|
| 66 |
|
|
SPI_SR_RF_FF EQU 3 ; SPI RF Full Flag (Possible Overrun Error)
|
| 67 |
|
|
SPI_SR_DE EQU 4 ; SSP UART RS-485 Drive Enable
|
| 68 |
|
|
SPI_SR_RTS EQU 5 ; SSP UART Request-To-Send Modem Control Out
|
| 69 |
|
|
SPI_SR_CTS EQU 6 ; SSP UART Clear-To-Send Modem Control Input
|
| 70 |
|
|
SPI_SR_IRQ EQU 7 ; SSP UART Interrupt Request Output
|
| 71 |
|
|
|
| 72 |
|
|
;-------------------------------------------------------------------------------
|
| 73 |
|
|
; SSP UART Control Register (RA = 000) (16-bits Total) (Read-Write)
|
| 74 |
|
|
;-------------------------------------------------------------------------------
|
| 75 |
|
|
|
| 76 |
|
|
UART_CR_RA EQU 3 ; Bits 7:5 SPI_DIO_H
|
| 77 |
|
|
UART_CR_WnR EQU 1 ; Bit 4 SPI_DIO_H, Write if Set, elxe Read
|
| 78 |
|
|
UART_CR_MD EQU 2 ; Bits 3:2 SPI_DIO_H, UART Mode: 232/485
|
| 79 |
|
|
UART_CR_RTSo EQU 1 ; Bit 1 SPI_DIO_H, Request-To-Send Output
|
| 80 |
|
|
UART_CR_IE EQU 1 ; Bit 0 SPI_DIO_H, Interrupt Enable
|
| 81 |
|
|
UART_CR_FMT EQU 4 ; Bits 7:4 SPI_DIO_L, Serial Frame Format
|
| 82 |
|
|
UART_CR_BAUD EQU 4 ; Bits 3:0 SPI_DIO_L, Serial Baud Rate
|
| 83 |
|
|
|
| 84 |
|
|
;-------------------------------------------------------------------------------
|
| 85 |
|
|
; SSP UART Status Register (RA = 001) (16-bits Total) (Read-Only)
|
| 86 |
|
|
;-------------------------------------------------------------------------------
|
| 87 |
|
|
|
| 88 |
|
|
UART_SR_RA EQU 3 ; Bits 7:5 SPI_DIO_H
|
| 89 |
|
|
UART_SR_WnR EQU 1 ; Bit 4 SPI_DIO_H, Ignored if Set
|
| 90 |
|
|
UART_SR_MD EQU 2 ; Bits 4:2 SPI_DIO_H, UART Mode
|
| 91 |
|
|
UART_SR_RTSi EQU 1 ; Bit 1 SPI_DIO_H, RTS signal level
|
| 92 |
|
|
UART_SR_CTSi EQU 1 ; Bit 0 SPI_DIO_H, CTS signal level
|
| 93 |
|
|
UART_SR_RS EQU 2 ; Bits 7:6 SPI_DIO_L, Rx FIFO State
|
| 94 |
|
|
UART_SR_TS EQU 2 ; Bits 5:4 SPI_DIO_L, Tx FIFO State
|
| 95 |
|
|
UART_SR_iRTO EQU 1 ; Bit 3 SPI_DIO_L, Rcv Timeout Interrupt
|
| 96 |
|
|
UART_SR_iRDA EQU 1 ; Bit 2 SPI_DIO_L, Rcv Data Available
|
| 97 |
|
|
UART_SR_iTHE EQU 1 ; Bit 1 SPI_DIO_L, Tx FIFO Half Empty
|
| 98 |
|
|
UART_SR_iTFE EQU 1 ; Bit 0 SPI_DIO_L, Tx FIFO Empty
|
| 99 |
|
|
|
| 100 |
|
|
;-------------------------------------------------------------------------------
|
| 101 |
|
|
; SSP UART Transmit Data Register (RA = 010) (16-bits Total) (Write-Only)
|
| 102 |
|
|
;-------------------------------------------------------------------------------
|
| 103 |
|
|
|
| 104 |
|
|
UART_TD_RA EQU 3 ; Bits 7:5 SPI_DIO_H
|
| 105 |
|
|
UART_TD_WnR EQU 1 ; Bit 4 SPI_DIO_H, Ignored if Not Set
|
| 106 |
|
|
UART_TD_TFC EQU 1 ; Bit 3 SPI_DIO_H, Transmit FIFO Clear/Rst
|
| 107 |
|
|
UART_TD_RFC EQU 1 ; Bit 2 SPI_DIO_H, Receive FIFO Clear/Reset
|
| 108 |
|
|
UART_TD_HLD EQU 1 ; Bit 1 SPI_DIO_H, Transmit delayed until 0
|
| 109 |
|
|
UART_TD_Rsvd EQU 1 ; Bit 0 SPI_DIO_H, Reserved
|
| 110 |
|
|
UART_TD_DO EQU 8 ; Bits 7:0 SPI_DIO_L, Tx Data: 7 or 8 bits
|
| 111 |
|
|
|
| 112 |
|
|
;-------------------------------------------------------------------------------
|
| 113 |
|
|
; SSP UART Recieve Data Register (RA = 011) (16-bits Total) (Read-Only)
|
| 114 |
|
|
;-------------------------------------------------------------------------------
|
| 115 |
|
|
|
| 116 |
|
|
UART_RD_RA EQU 3 ; Bits 7:5 SPI_DIO_H
|
| 117 |
|
|
UART_RD_WnR EQU 1 ; Bit 4 SPI_DIO_H, Ignored if Set
|
| 118 |
|
|
UART_RD_TRDY EQU 1 ; Bit 3 SPI_DIO_H, Transmit Ready
|
| 119 |
|
|
UART_RD_RRDY EQU 1 ; Bit 2 SPI_DIO_H, Receive Ready
|
| 120 |
|
|
UART_RD_RTO EQU 1 ; Bit 1 SPI_DIO_H, Receive Time Out Detected
|
| 121 |
|
|
UART_RD_RERR EQU 1 ; Bit 0 SPI_DIO_H, Receive Error Dectected
|
| 122 |
|
|
UART_RD_DI EQU 8 ; Bits 7:0 SPI_DIO_L, Rx Data: 7 or 8 bits
|
| 123 |
|
|
|
| 124 |
|
|
;-------------------------------------------------------------------------------
|
| 125 |
|
|
; Set Reset/WDT Vector
|
| 126 |
|
|
;-------------------------------------------------------------------------------
|
| 127 |
|
|
|
| 128 |
|
|
ORG 0x7FF
|
| 129 |
|
|
|
| 130 |
|
|
GOTO Start
|
| 131 |
|
|
|
| 132 |
|
|
;-------------------------------------------------------------------------------
|
| 133 |
|
|
; Main Program
|
| 134 |
|
|
;-------------------------------------------------------------------------------
|
| 135 |
|
|
|
| 136 |
|
|
ORG 0x000
|
| 137 |
|
|
|
| 138 |
|
|
;-------------------------------------------------------------------------------
|
| 139 |
|
|
|
| 140 |
|
|
Start MOVLW 0xFF ; Initialize TRIS A and TRIS B to all 1s
|
| 141 |
|
|
TRIS 5
|
| 142 |
|
|
TRIS 6
|
| 143 |
|
|
|
| 144 |
|
|
MOVLW 0x0E ; Load W with SPI CR Initial Value
|
| 145 |
|
|
MOVWF SPI_CR ; Save copy of value
|
| 146 |
|
|
TRIS 7 ; Initialize SPI CR
|
| 147 |
|
|
|
| 148 |
|
|
MOVLW 0x08 ; Delay before using SPI I/F
|
| 149 |
|
|
MOVWF DlyCntr
|
| 150 |
|
|
SPI_Init_Dly DECFSZ DlyCntr,1
|
| 151 |
|
|
GOTO SPI_Init_Dly
|
| 152 |
|
|
|
| 153 |
|
|
MOVLW 0x1B ; UART CR (Hi): RS485 w/o Loop Back, IE
|
| 154 |
|
|
MOVWF PortC ; Output to SPI and to UART
|
| 155 |
|
|
MOVLW 0x00 ; UART CR (Lo) Set 8N1
|
| 156 |
|
|
MOVWF PortC
|
| 157 |
|
|
|
| 158 |
|
|
MOVLW 0x30 ; UART BRR (Hi) PS[3:0]
|
| 159 |
|
|
MOVWF PortC ; Output to SPI and to UART
|
| 160 |
|
|
MOVLW 0xBF ; UART BRR (Lo) Div[7:0]
|
| 161 |
|
|
MOVWF PortC
|
| 162 |
|
|
|
| 163 |
|
|
WaitLp1 BTFSS PortA, SPI_SR_TF_EF ; Wait for UART UCR, BRR output
|
| 164 |
|
|
GOTO WaitLp1
|
| 165 |
|
|
|
| 166 |
|
|
Wr_UART_TD MOVLW 0x50 ; UART TD (Hi) RA = 2, WnR = 1
|
| 167 |
|
|
MOVWF PortC ; Output to SPI and to UART
|
| 168 |
|
|
MOVLW 0x55 ; UART TD (Lo) 0x55 = "U"
|
| 169 |
|
|
MOVWF PortC ; Output to SPI and to UART
|
| 170 |
|
|
|
| 171 |
|
|
WaitLp2 BTFSS PortA, SPI_SR_TF_EF ; Wait for UART CR data to be sent
|
| 172 |
|
|
GOTO WaitLp2
|
| 173 |
|
|
|
| 174 |
|
|
BSF SPI_CR, SPI_CR_REn ; Enable SPI IF Capture MISO data
|
| 175 |
|
|
|
| 176 |
|
|
MOVF SPI_CR,0 ; Load SPI CR Shadow
|
| 177 |
|
|
TRIS 7 ; Enable SPI I/F Receive Function
|
| 178 |
|
|
|
| 179 |
|
|
Rd_UART_SR MOVLW 0x20 ; Read UART Status Register
|
| 180 |
|
|
MOVWF PortC
|
| 181 |
|
|
CLRW
|
| 182 |
|
|
MOVWF PortC
|
| 183 |
|
|
|
| 184 |
|
|
WaitLp3 BTFSC PortA, SPI_SR_RF_EF ; Wait for UART Return Data (Hi)
|
| 185 |
|
|
GOTO WaitLp3
|
| 186 |
|
|
|
| 187 |
|
|
MOVF PortC,0 ; Read SPI Receive FIFO
|
| 188 |
|
|
MOVWF SPI_DIO_H ; Store UART SR (hi byte)
|
| 189 |
|
|
|
| 190 |
|
|
|
| 191 |
|
|
WaitLp4 BTFSC PortA, SPI_SR_RF_EF ; Wait for UART Return Data (Hi)
|
| 192 |
|
|
GOTO WaitLp4
|
| 193 |
|
|
|
| 194 |
|
|
MOVF PortC,0 ; Read SPI Receive FIFO
|
| 195 |
|
|
MOVWF SPI_DIO_L ; Store UART SR (hi byte)
|
| 196 |
|
|
|
| 197 |
|
|
BTFSS SPI_DIO_L,0 ; Test UART_SR_iTFE bit
|
| 198 |
|
|
GOTO Rd_UART_SR ; Loop until UART TF Empty
|
| 199 |
|
|
|
| 200 |
|
|
BCF SPI_CR, SPI_CR_REn ; Disable SPI IF Capture MISO data
|
| 201 |
|
|
|
| 202 |
|
|
MOVF SPI_CR,0 ; Load SPI CR Shadow
|
| 203 |
|
|
TRIS 7 ; Disable SPI I/F Receive Function
|
| 204 |
|
|
|
| 205 |
|
|
GOTO Wr_UART_TD ; Loop Forever, send 0x55 continously
|
| 206 |
|
|
|
| 207 |
|
|
;-------------------------------------------------------------------------------
|
| 208 |
|
|
|
| 209 |
|
|
END
|
| 210 |
|
|
|