Skip to content
Snippets Groups Projects
Commit 374362c5 authored by Russ Cox's avatar Russ Cox
Browse files

lapic: disable microdelay because it makes Bochs slow

parent f8ab2079
No related branches found
No related tags found
No related merge requests found
...@@ -124,10 +124,6 @@ lapiceoi(void) ...@@ -124,10 +124,6 @@ lapiceoi(void)
void void
microdelay(int us) microdelay(int us)
{ {
volatile int j = 0;
while(us-- > 0)
for(j=0; j<10000; j++);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment