Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 1754 → Rev 1702

/kernel/trunk/arch/ia32/src/drivers/i8254.c
26,14 → 26,10
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @addtogroup ia32
/** @addtogroup ia32
* @{
*/
/**
* @file
* @brief i8254 chip driver.
*
* Low level time functions.
/** @file
*/
 
#include <arch/types.h>
51,9 → 47,15
#include <time/delay.h>
#include <interrupt.h>
 
/*
* i8254 chip driver.
* Low level time functions.
*/
 
#define CLK_PORT1 0x40
#define CLK_PORT4 0x43
 
 
#define CLK_CONST 1193180
#define MAGIC_NUMBER 1194
 
135,5 → 137,6
clock();
}
 
/** @}
/** @}
*/