static inline void
write_cmos (grub_uint8_t addr, grub_uint8_t val)
{
- __asm__ __volatile__ ("outb %%al,$0x70\n"
- "mov %%cl, %%al\n"
- "outb %%al,$0x71": :"a" (addr), "c" (val));
+ asm volatile ("outb %%al,$0x70\n"
+ "mov %%cl, %%al\n"
+ "outb %%al,$0x71": :"a" (addr), "c" (val));
}
static inline grub_uint8_t
read_cmos (grub_uint8_t addr)
{
grub_uint8_t ret;
- __asm__ __volatile__ ("outb %%al, $0x70\n"
- "inb $0x71, %%al": "=a"(ret) :"a" (addr));
+ asm volatile ("outb %%al, $0x70\n"
+ "inb $0x71, %%al": "=a"(ret) :"a" (addr));
return ret;
}
#endif
/* Disable interrupts. */
- __asm__ __volatile__ ("cli");
+ asm volatile ("cli");
/* Bochs, QEMU, etc. Removed in newer QEMU releases. */
for (i = 0; i < sizeof (bochs_shutdown) - 1; i++)
grub_cpu_idle (void)
{
/* FIXME: this can't work until we handle interrupts. */
-/* __asm__ __volatile__ ("wfi"); */
+/* asm volatile ("wfi"); */
}
#endif /* ! KERNEL_CPU_TIME_HEADER */
grub_cpu_idle (void)
{
/* FIXME: this can't work until we handle interrupts. */
-/* __asm__ __volatile__ ("wfi"); */
+/* asm volatile ("wfi"); */
}
#endif /* ! KERNEL_CPU_TIME_HEADER */
{
unsigned char _v;
- __asm__ __volatile__ ("inb %w1,%0":"=a" (_v):"Nd" (port));
+ asm volatile ("inb %w1,%0":"=a" (_v):"Nd" (port));
return _v;
}
{
unsigned short _v;
- __asm__ __volatile__ ("inw %w1,%0":"=a" (_v):"Nd" (port));
+ asm volatile ("inw %w1,%0":"=a" (_v):"Nd" (port));
return _v;
}
{
unsigned int _v;
- __asm__ __volatile__ ("inl %w1,%0":"=a" (_v):"Nd" (port));
+ asm volatile ("inl %w1,%0":"=a" (_v):"Nd" (port));
return _v;
}
static __inline void
grub_outb (unsigned char value, unsigned short int port)
{
- __asm__ __volatile__ ("outb %b0,%w1": :"a" (value), "Nd" (port));
+ asm volatile ("outb %b0,%w1": :"a" (value), "Nd" (port));
}
static __inline void
grub_outw (unsigned short int value, unsigned short int port)
{
- __asm__ __volatile__ ("outw %w0,%w1": :"a" (value), "Nd" (port));
+ asm volatile ("outw %w0,%w1": :"a" (value), "Nd" (port));
}
static __inline void
grub_outl (unsigned int value, unsigned short int port)
{
- __asm__ __volatile__ ("outl %0,%w1": :"a" (value), "Nd" (port));
+ asm volatile ("outl %0,%w1": :"a" (value), "Nd" (port));
}
#endif /* _SYS_IO_H */
grub_cpu_idle (void)
{
/* FIXME: this can't work until we handle interrupts. */
-/* __asm__ __volatile__ ("hlt"); */
+/* asm volatile ("hlt"); */
}
#endif /* ! KERNEL_CPU_TIME_HEADER */
grub_cpuid (0,a,b,c,d);
/* Read TSC value. We cannot use "=A", since this would use
%rax on x86_64. */
- __asm__ __volatile__ ("rdtsc":"=a" (lo), "=d" (hi));
+ asm volatile ("rdtsc":"=a" (lo), "=d" (hi));
return (((grub_uint64_t) hi) << 32) | lo;
}
grub_cpu_idle (void)
{
/* FIXME: this can't work until we handle interrupts. */
-/* __asm__ __volatile__ ("hlt"); */
+/* asm volatile ("hlt"); */
}
#endif /* ! KERNEL_CPU_TIME_HEADER */