]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/MAI/bios_emulator/scitech/src/pm/smx/vflat.c
* Patch by Thomas Frieden, 13 Nov 2002:
[karo-tx-uboot.git] / board / MAI / bios_emulator / scitech / src / pm / smx / vflat.c
1 /****************************************************************************
2 *
3 *                   SciTech OS Portability Manager Library
4 *
5 *  ========================================================================
6 *
7 *    The contents of this file are subject to the SciTech MGL Public
8 *    License Version 1.0 (the "License"); you may not use this file
9 *    except in compliance with the License. You may obtain a copy of
10 *    the License at http://www.scitechsoft.com/mgl-license.txt
11 *
12 *    Software distributed under the License is distributed on an
13 *    "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
14 *    implied. See the License for the specific language governing
15 *    rights and limitations under the License.
16 *
17 *    The Original Code is Copyright (C) 1991-1998 SciTech Software, Inc.
18 *
19 *    The Initial Developer of the Original Code is SciTech Software, Inc.
20 *    All Rights Reserved.
21 *
22 *  ========================================================================
23 *
24 * Language:     ANSI C
25 * Environment:  Any
26 *
27 * Description:  Dummy module; no virtual framebuffer for this OS
28 *
29 ****************************************************************************/
30
31 #include "pmapi.h"
32
33 ibool PMAPI VF_available(void)
34 {
35     return false;
36 }
37
38 void * PMAPI VF_init(ulong baseAddr,int bankSize,int codeLen,void *bankFunc)
39 {
40     baseAddr = baseAddr;
41     bankSize = bankSize;
42     codeLen = codeLen;
43     bankFunc = bankFunc;
44     return NULL;
45 }
46
47 void PMAPI VF_exit(void)
48 {
49 }