reactos/hal/halx86
diff -u -r1.3 -r1.4
--- timer.c 12 Jan 2004 22:36:04 -0000 1.3
+++ timer.c 10 May 2004 11:13:15 -0000 1.4
@@ -20,7 +20,7 @@
* MA 02139, USA.
*
*/
-/* $Id: timer.c,v 1.3 2004/01/12 22:36:04 gvg Exp $
+/* $Id: timer.c,v 1.4 2004/05/10 11:13:15 gvg Exp $
*
* PROJECT: ReactOS kernel
* FILE: ntoskrnl/hal/x86/udelay.c
@@ -109,14 +109,14 @@
#if defined(__GNUC__)
__asm__ __volatile__ (
"mov %0, %%eax\n"
- "L1: dec %%eax\n"
- "jnz L1" : : "d" (Loops));
+ "ROSL1: dec %%eax\n"
+ "jnz ROSL1" : : "d" (Loops));
#elif defined(_MSC_VER)
__asm mov eax, Loops
-L1:
+ROSL1:
__asm dec eax
- __asm jnz L1
+ __asm jnz ROSL1
#else
volatile unsigned int target = Loops;
unsigned int i;