blob: c8432eca43fa31913139cf895a54686cebd8ba2f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/****************************************************************************
* YABEL BIOS Emulator
*
* This program and the accompanying materials
* are made available under the terms of the BSD License
* which accompanies this distribution, and is available at
* http://www.opensource.org/licenses/bsd-license.php
*
* Copyright (c) 2008 Pattrick Hueper <phueper@hueper.net>
****************************************************************************/
#ifndef _BIOSEMU_COMPAT_TIME_H
#define _BIOSEMU_COMPAT_TIME_H
/* TODO: check how this works in x86 */
static unsigned long tb_freq = 0;
#endif
|