Last change
on this file since 5606 was 5477, checked in by vboxsync, 17 years ago |
export
|
-
Property svn:eol-style
set to
native
-
Property svn:keywords
set to
Author Date Id Revision
|
File size:
1.4 KB
|
Line | |
---|
1 | ; $Id: sup.mac 5477 2007-10-24 09:27:45Z vboxsync $
|
---|
2 | ;; @file
|
---|
3 | ; SUP - Support Library, assembly definitions.
|
---|
4 | ;
|
---|
5 |
|
---|
6 | ;
|
---|
7 | ; Copyright (C) 2006-2007 InnoTek Systemberatung GmbH
|
---|
8 | ;
|
---|
9 | ; This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | ; available from http://www.virtualbox.org. This file is free software;
|
---|
11 | ; you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | ; General Public License as published by the Free Software Foundation,
|
---|
13 | ; in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
|
---|
14 | ; distribution. VirtualBox OSE is distributed in the hope that it will
|
---|
15 | ; be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | ;
|
---|
17 | ;
|
---|
18 |
|
---|
19 | %ifndef ___VBox_sup_mac
|
---|
20 | %define ___VBox_sup_mac
|
---|
21 |
|
---|
22 |
|
---|
23 | struc SUPGIPCPU
|
---|
24 | .u32TransactionId resd 1
|
---|
25 | .u32UpdateIntervalTSC resd 1
|
---|
26 | .u64NanoTS resq 1
|
---|
27 | .u64TSC resq 1
|
---|
28 | .u64CpuHz resq 1
|
---|
29 | .cErrors resd 1
|
---|
30 | .iTSCHistoryHead resd 1
|
---|
31 | .au32TSCHistory resd 8
|
---|
32 | .au32Reserved resd 6
|
---|
33 | endstruc
|
---|
34 |
|
---|
35 | %define SUPGLOBALINFOPAGE_MAGIC 0x19590106
|
---|
36 | struc SUPGLOBALINFOPAGE
|
---|
37 | .u32Magic resd 1
|
---|
38 | .u32Version resd 1
|
---|
39 | .u32Mode resd 1
|
---|
40 | .u32Padding0 resd 1
|
---|
41 | .u32UpdateHz resd 1
|
---|
42 | .u32UpdateIntervalNS resd 1
|
---|
43 | .u64NanoTSLastUpdateHz resq 1
|
---|
44 | .au32Padding1 resd 56
|
---|
45 | .aCPUs resb (SUPGIPCPU_size*32)
|
---|
46 | endstruc
|
---|
47 |
|
---|
48 |
|
---|
49 | %endif
|
---|
50 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.