Okay, new PIC issue causing premature forcible hair removal. The code below is supposed to put 1's on the PORTB pins (PIC16F690). It's not happening; what am I missing?
Didn't find your answer? Ask the community — no account required.
R
Richard Seriani
Randy,
From the MPASM Help file: This directive is an instruction to the assembler and linker to generate bank selecting code to set the bank to the bank containing the designated label.
So, unless 0x01 is a label that somehow defines TRISB, it looks like you are never setting PORTB or PORTC as outputs. You may want to try setting the individual STATUS register bits to perform bank selection (see Example 4-3 in the datasheet). If not, use a valid label for banksel (for example, TRISB, or any other Bank1 register). Same for coming back to Bank0. Check out the examples in the MPASM help file.
You only provided a snippet of code, but you may also want to look at whether your ports default to analog or digital on startup.