Programming 8051 using MikroC

Thread Starter

MARKPRECIO

Joined Apr 26, 2017
1
Hello
I am new to MikroC for 8051, please can someone show me how to assign individual port pins as input and outputs?
 

embedtechnology

Joined Dec 25, 2015
42
sbit input1 at p1_0_bit;
sbit output1 at p3_1_bit;
for more details click on help and read the migration document. There you can see every thing you require.
 
Top