in ARM , how can i change the values at the output pins? i.e.,in my program, i cant use the IOSET and IOCLR commands to change the values at the output pins bcoz the output in my program should change depending on the runtime variables(about which i cant have a prior knowledge)
ex.: in AVR compilers, i can use......
PORTA.0=X (where X is a run time variable) {for manipulating the 0th pin of portA)
how can i do similarly in ARM conrrollers?? can i use PORT1.0=X
is there any such possibility??