cfad47cfa3/tads3/vmcfgmem.cpp

4b825dc642cb6eb9a060e54bf8d69288fbee4904cfad47cfa334b206c65f22086bcc5d63e6f70944
1
#ifdef RCSID
2
static char RCSid[] =
3
"$Header$";
4
#endif
5
6
/* 
7
 *   Copyright (c) 1999, 2002 Michael J. Roberts.  All Rights Reserved.
8
 *   
9
 *   Please see the accompanying license file, LICENSE.TXT, for information
10
 *   on using and copying this software.  
11
 */
12
/*
13
Name
14
  vmcfgmem.cpp - T3 VM Configuration - in-memory (non-swapping) memory manager
15
Function
16
  
17
Notes
18
  
19
Modified
20
  10/08/99 MJRoberts  - Creation
21
*/
22
23
#include "vminit.h"
24
#include "vmglob.h"
25
26
/*
27
 *   initialize 
28
 */
29
void vm_initialize(struct vm_globals **vmg, const vm_init_options *opts)
30
{
31
    vm_init_in_mem(vmg, opts);
32
}
33