• a call to delay subroutine results infinite loop
    I'm using keil uvision 4 and learning programming for AT89s52 , I'm using 12MHZ frequency. I have written a subroutine for a delay of 10 micro sec which is in another file called DELAY.ASM and made...
  • the call to delay subroutine results infinite loop
    I'm using keil uvision 4 and learning programming for AT89s52 , I'm using 12MHZ frequency. I had written a subroutine for a delay of 10 micro sec which is in another file called DELAY.ASM and made...
  • For loop
    can i use the for loop like this in accessing the 2-d array. for(u=0;u<=4;u++) { for(v=v1;;) { arr[u][v] += 1; } } bcos in the second for loop i want to do the increment in some other...
  • Delays
    How can one generate a precise time delay wihtout using the timers and using only the software loops.
  • How to get C51 to generate a DJNZ loop?
    I want a fast and simple delay routine: #pragma OT(8,SPEED) // Switch to speed optimization for this routine void my_delay(BYTE count) { register BYTE i; for (i=count; i; i--); } Is the...