sl@0
|
1 |
// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// Example reference driver PDD project file for emulator target
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
/**
|
sl@0
|
19 |
@file d_expio_pdd_emul.mmp
|
sl@0
|
20 |
*/
|
sl@0
|
21 |
|
sl@0
|
22 |
// includes variant. mmh, which contains definitions to determine
|
sl@0
|
23 |
// the CPU Core Type, the Memory Model and Name for this Variant
|
sl@0
|
24 |
#include "../../../variant_test.mmh"
|
sl@0
|
25 |
|
sl@0
|
26 |
// includes all the necessary information to build a kernel Debug Agent
|
sl@0
|
27 |
#include "kernel/kern_ext.mmh"
|
sl@0
|
28 |
|
sl@0
|
29 |
// name of the target
|
sl@0
|
30 |
target VariantTarget(d_expio_pdd,pdd)
|
sl@0
|
31 |
// type of the target
|
sl@0
|
32 |
targettype pdd
|
sl@0
|
33 |
|
sl@0
|
34 |
// source path and files
|
sl@0
|
35 |
sourcepath ../../../../../../../kernelhwsrv/kerneltest/e32test/examples/exdriver/exdriver_pio/src
|
sl@0
|
36 |
source d_expio_pdd.cpp
|
sl@0
|
37 |
sourcepath ../src
|
sl@0
|
38 |
source d_expio_emul.cpp
|
sl@0
|
39 |
|
sl@0
|
40 |
// include path and files
|
sl@0
|
41 |
USERINCLUDE ../inc
|
sl@0
|
42 |
USERINCLUDE ../../../../../../../kernelhwsrv/kerneltest/e32test/examples/exdriver/exdriver_pio/inc
|
sl@0
|
43 |
|
sl@0
|
44 |
// uid of this binary
|
sl@0
|
45 |
uid 0x100039d0
|
sl@0
|
46 |
|
sl@0
|
47 |
// platsec capabilities
|
sl@0
|
48 |
capability all
|
sl@0
|
49 |
|
sl@0
|
50 |
// macros to be enabled at compile time
|
sl@0
|
51 |
macro _EXDRIVER_DEBUG_
|
sl@0
|
52 |
|
sl@0
|
53 |
start wins
|
sl@0
|
54 |
baseaddress 0x59000000
|
sl@0
|
55 |
win32_library kernel32.lib
|
sl@0
|
56 |
end
|
sl@0
|
57 |
|
sl@0
|
58 |
//
|
sl@0
|
59 |
// End of d_expio_pdd.mmp |