When i define my code and run in proteus simulation, the leds which are connected to portA of PIC16F877 is not working. When i close the code like that "//use fast_io(A)" but i still use tris commands of port A, my leds are working which is connected to portA. So i can not lit the leds which is connected to portA when i use "#use fast_io(A)" command.I dont know why such thing occurs. First the leds are connected to portA.
#use fast_io(A)
#use fast_io(B)
#use fast_io(C)
set_tris_a(0b00010000);
output_a(0x00);
set_tris_b(0b10111111);
output_b(0x00);
set_tris_c(0b00010000);
output_c(0x00);