Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 196 → Rev 197

/SPARTAN/trunk/arch/amd64/include/asm.h
32,6 → 32,8
#include <arch/types.h>
#include <config.h>
 
void asm_delay_loop(__u32 t);
 
/* TODO: implement the real stuff */
static inline __address get_stack_base(void)
{
38,4 → 40,6
return NULL;
}
 
static inline void cpu_sleep(void) { __asm__("hlt"); };
 
#endif