Moved from freebios

git-svn-id: svn://svn.coreboot.org/coreboot/trunk@862 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Greg Watson
2003-06-09 21:29:23 +00:00
parent fd958cea68
commit 0322115932
31 changed files with 3939 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
/* $Id$ */
/* Copyright 2000 AG Electronics Ltd. */
/* This code is distributed without warranty under the GPL v2 (see COPYING) */
#ifndef _TIMER_H
#define __TIMER_H
unsigned get_hz(void);
unsigned ticks_since_boot(void);
void sleep_ticks(unsigned);
void udelay(int);
#endif