mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-19 01:17:36 +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.
40 lines
857 B
C
40 lines
857 B
C
#ifndef HDW_CONF_H
|
|
#define HDW_CONF_H 1
|
|
/* $Id: hdw_conf.h,v 1.2 1999/01/03 02:06:01 sybalsky Exp $ (C) Copyright Venue, All Rights Reserved */
|
|
|
|
|
|
|
|
|
|
/************************************************************************/
|
|
/* */
|
|
/* (C) Copyright 1989-92 Venue. All Rights Reserved. */
|
|
/* Manufactured in the United States of America. */
|
|
/* */
|
|
/************************************************************************/
|
|
|
|
|
|
|
|
|
|
/**************************************************************/
|
|
/*
|
|
File name : machineconfig.h
|
|
|
|
Created : Aug-19-87 take
|
|
|
|
Desc. : Define for Machine dependent param
|
|
|
|
*/
|
|
/**************************************************************/
|
|
/* Machine Type */
|
|
|
|
#define KATANA 3
|
|
|
|
/* Lastvmempage(32Mbyte) */
|
|
#ifdef BIGVM
|
|
#define LASTVMEMPAGE 0x1FFFF
|
|
#else
|
|
#define LASTVMEMPAGE (65535)
|
|
#endif
|
|
|
|
#endif /* HDW_CONF_H */
|