blob: 514cb78b4a4a2e178ec30de630bd8e741b88b103 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/*
* Header file used only in HWMC_ONLY mode
* Copyright © <2010>, Intel Corporation.
*
* This program is licensed under the terms and conditions of the
* Eclipse Public License (EPL), version 1.0. The full text of the EPL is at
* http://www.opensource.org/licenses/eclipse-1.0.php.
*
*/
// Module name: HwmcOnlyHeader.inc
//
// Header file used only in HWMC_ONLY mode
//
#include "header.inc"
#if !defined(__HWMCONLYHEADER__) // Make sure the following are only included once
#define __HWMCONLYHEADER__
.reg_count_total 64
.reg_count_payload 2
//
// Now, begin source code....
//
.code
#endif // !defined(__HWMCONLYHEADER__)
|