mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-13 15:18:14 +00:00
As a prerequisite for cleaning up some other include issues, all the include files in inc/ should have an include guard. All the xxxdefs.h were created with them, but most older files were not.
26 lines
891 B
C
26 lines
891 B
C
#ifndef VMEMSAVE_H
|
|
#define VMEMSAVE_H 1
|
|
/* $Id: vmemsave.h,v 1.2 1999/01/03 02:06:29 sybalsky Exp $ (C) Copyright Venue, All Rights Reserved */
|
|
|
|
|
|
|
|
/************************************************************************/
|
|
/* */
|
|
/* (C) Copyright 1989-96 Venue. All Rights Reserved. */
|
|
/* Manufactured in the United States of America. */
|
|
/* */
|
|
/************************************************************************/
|
|
|
|
|
|
/*
|
|
File Name : vmemsave.h
|
|
DEfinition for vmemsave
|
|
*/
|
|
|
|
#define FP_IFPAGE 512 /* IFPAGE address in sysoutfile by Byte */
|
|
#define DOMINOPAGES 301 /* skip dominopages in fptovp */
|
|
#define SKIPPAGES 301 /* save first filepage */
|
|
#define SKIP_DOMINOPAGES 153600 /* Byte size in sysoutfile for dominocode */
|
|
#define SAVE_IFPAGE 223 /* Virtual address for IFPAGES's buffer page. This value is \EMUSWAPBUFFERS in lisp. */
|
|
#endif /* VMEMSAVE_H */
|