I need to help with this assembly delay function, Can any one help me calculate how much second delay is for this assembly delay function? It's coding for STM32L152-DISCOVERY board, here is the its page: http://www.st.com/web/en/catalog/tools/FM116/SC959/SS1532/LN1848/PF258515
Delay PROC
push {r1}
LDR r1, = 0x1000
again1 NOP
NOP
subs r1, #1
bne again1
pop {r1}
bx lr
ENDP