From c757463c814775c4aeea59461c78f01d8db33a6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Revol?= Date: Sat, 12 Jan 2008 22:51:58 +0000 Subject: [PATCH] lpstop is 060 only so gas complains. comment for now. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@23451 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/system/boot/platform/atari_m68k/cpu.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/system/boot/platform/atari_m68k/cpu.cpp b/src/system/boot/platform/atari_m68k/cpu.cpp index b128f1d0dd..686d4b256a 100644 --- a/src/system/boot/platform/atari_m68k/cpu.cpp +++ b/src/system/boot/platform/atari_m68k/cpu.cpp @@ -52,7 +52,7 @@ spin(bigtime_t microseconds) bigtime_t time = system_time(); if (gCpuHasLPSTOP) { while ((system_time() - time) < microseconds) - asm volatile ("lpstop;"); + asm volatile ("nop;");//asm volatile ("lpstop;"); } else { while ((system_time() - time) < microseconds) asm volatile ("nop;");