| ??? 04/25/02 11:30 Read: times |
#22139 - RE: Assembly on C programm |
Hi Jorge,
for small delay I use: unsigned char i; while( --i ); It was compiled as DJNZ and consume i * 2 cycle. For larger delay it can be cascaded: unsigned char i, j; do while( --i ); while( --j ); Look on the list file. Then you can see, that DJNZ was used. Peter |



