cfad47cfa3/tads3/vmcfgmem.cpp

User picture

Commiter: Nikos Chantziaras

Author: Nikos Chantziaras

Revision: cfad47cfa3


File Size: 588 Bytes

(June 01, 2009 20:54 UTC) Almost 3 years ago

Initial commit.

 
Show/hide line numbers
#ifdef RCSID
static char RCSid[] =
"$Header$";
#endif

/* 
 *   Copyright (c) 1999, 2002 Michael J. Roberts.  All Rights Reserved.
 *   
 *   Please see the accompanying license file, LICENSE.TXT, for information
 *   on using and copying this software.  
 */
/*
Name
  vmcfgmem.cpp - T3 VM Configuration - in-memory (non-swapping) memory manager
Function
  
Notes
  
Modified
  10/08/99 MJRoberts  - Creation
*/

#include "vminit.h"
#include "vmglob.h"

/*
 *   initialize 
 */
void vm_initialize(struct vm_globals **vmg, const vm_init_options *opts)
{
    vm_init_in_mem(vmg, opts);
}