I'm using the PIC16F15313 which only has one TRISA PortA that's 6 bits wide (RA0 - RA5). When I configure a pin to be an output to blink and LED I write:
TRISA = 0x00; //SETS PORT A as an output
As I understand it this configure the entire port to be outputs. Does this mean that I can't have two of the pins to be inputs and the rest outputs? I don't actually need inputs but am curious if this is how it works.