how do i get variable address defined in C inside assembly instructions while writing some assembly instructions between C code.
Ashutosh Tiwari Bangalore
Ashutosh, But using inline assembly you are interfering with the work of the compiler optimizer. I would advide against it! For example - your choice of register usage might conflict with the optimal choice at that time, without you knowing it.